Skip to content

Commit 8fc9eda

Browse files
jimmodpgeorge
authored andcommitted
all: Standardise x.y.z versioning for all packages.
- For packages that were just x.y, update to x.y.0. - For that were x.y.z-n, update to x.y.(z+1) From now on we'll apply semver rules: - MAJOR version when you make incompatible API changes - MINOR version when you add functionality in a backward compatible manner - PATCH version when you make backward compatible bug fixes Signed-off-by: Jim Mussared <jim.mussared@gmail.com>
1 parent ebbb78e commit 8fc9eda

File tree

47 files changed

+47
-47
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+47
-47
lines changed

micropython/aioespnow/manifest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
metadata(
22
description="Extends the micropython espnow module with methods to support asyncio.",
3-
version="0.1",
3+
version="0.1.0",
44
)
55

66
module("aioespnow.py")

micropython/espflash/manifest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
metadata(
2-
version="0.1",
2+
version="0.1.0",
33
description="Provides a minimal ESP32 bootloader protocol implementation.",
44
)
55

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
metadata(version="0.1")
1+
metadata(version="0.1.0")
22
require("lora")
33
package("lora")
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
metadata(version="0.1")
1+
metadata(version="0.1.0")
22
require("lora")
33
package("lora")
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
metadata(version="0.1")
1+
metadata(version="0.1.0")
22
require("lora")
33
package("lora")
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
metadata(version="0.1")
1+
metadata(version="0.1.0")
22
require("lora")
33
package("lora")

micropython/lora/lora/manifest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
metadata(version="0.1")
1+
metadata(version="0.1.0")
22
package("lora")

micropython/udnspkt/manifest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
metadata(description="Make and parse DNS packets (Sans I/O approach).", version="0.1")
1+
metadata(description="Make and parse DNS packets (Sans I/O approach).", version="0.1.0")
22

33
# Originally written by Paul Sokolovsky.
44

micropython/urllib.urequest/manifest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
metadata(version="0.6")
1+
metadata(version="0.6.0")
22

33
# Originally written by Paul Sokolovsky.
44

python-ecosys/pyjwt/manifest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
metadata(version="0.1", pypi="pyjwt")
1+
metadata(version="0.1.0", pypi="pyjwt")
22

33
require("hmac")
44

0 commit comments

Comments
 (0)