Skip to content

Commit 048ae23

Browse files
committed
push version numbers to major update and add one to consumer control
1 parent d4f7a91 commit 048ae23

File tree

4 files changed

+17
-6
lines changed

4 files changed

+17
-6
lines changed

build.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -88,19 +88,19 @@ def date_to_version(tag):
8888
MPYCROSSES = {
8989
"darwin": {
9090
"mpy6": "mpy-cross-macos-catalina-6.3.0",
91-
"mpy7": "mpy-cross-macos-universal-7.0.0-alpha.4",
91+
"mpy7": "mpy-cross-macos-universal-7.0.0-rc.1",
9292
},
9393
"linux": {
9494
"mpy6": "mpy-cross.static-amd64-linux-6.3.0",
95-
"mpy7": "mpy-cross.static-amd64-linux-7.0.0-alpha.4",
95+
"mpy7": "mpy-cross.static-amd64-linux-7.0.0-rc.1",
9696
},
9797
"win32": {
9898
"mpy6": "mpy-cross.static-x64-windows-6.3.0.exe",
99-
"mpy7": "mpy-cross.static-x64-windows-7.0.0-alpha.4.exe",
99+
"mpy7": "mpy-cross.static-x64-windows-7.0.0-rc.1.exe",
100100
},
101101
"raspbian": {
102102
"mpy6": "mpy-cross.static-raspbian-6.3.0",
103-
"mpy7": "mpy-cross.static-raspbian-7.0.0-alpha.4",
103+
"mpy7": "mpy-cross.static-raspbian-7.0.0-rc.1",
104104
},
105105
}
106106
MPYCROSS = MPYCROSSES[sys.platform]

libraries/common/keyboard_layout.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"""
88

99

10-
__version__ = "0.0.0-auto.0"
10+
__version__ = "1.0.0-auto.0"
1111
__repo__ = "https://github.com/Neradoc/Circuitpython_Keyboard_Layouts.git"
1212

1313

libraries/helpers/consumer_control_extended.py

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
# SPDX-FileCopyrightText: 2021 Neradoc [email protected]
2+
#
3+
# SPDX-License-Identifier: MIT
4+
"""
5+
Extended list of consumer controls.
6+
"""
7+
8+
9+
__version__ = "0.0.0-auto.0"
10+
__repo__ = "https://github.com/Neradoc/Circuitpython_Keyboard_Layouts.git"
11+
112

213
class ConsumerControlExtended:
314
UNASSIGNED = 0x00

libraries/layouts/keyboard_layout_win_fr.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"""
77

88

9-
__version__ = "0.0.0-auto.0"
9+
__version__ = "1.0.0-auto.0"
1010
__repo__ = "https://github.com/Neradoc/Circuitpython_Keyboard_Layouts.git"
1111

1212

0 commit comments

Comments
 (0)