diff --git a/Cargo.lock b/Cargo.lock index ed633e1b..f1809782 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -112,7 +112,7 @@ checksum = "ddccb15bcce173023b3fedd9436f882a0739b8dfb45e4f6b6002bee5929f61b2" [[package]] name = "simplersble" -version = "0.6.0-alpha8" +version = "0.6.0" dependencies = [ "cmake", "cxx", diff --git a/Cargo.toml b/Cargo.toml index ab473145..370d9097 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ edition = "2021" name = "simplersble" -version = "0.6.0-alpha8" +version = "0.6.0" license = "MIT" description = "The all-in-one Bluetooth library that makes it easy to add wireless connectivity to your projects." readme = "simplersble/README.md" diff --git a/docs/changelog.rst b/docs/changelog.rst index df5944b1..50275520 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file. The format is based on `Keep a Changelog`_, and this project adheres to `Semantic Versioning`_. -[0.6.0] - 2023-XX-XX +[0.6.0] - 2023-02-23 -------------------- **Added** diff --git a/simplepyble/setup.py b/simplepyble/setup.py index 4fe158fc..24999c7f 100644 --- a/simplepyble/setup.py +++ b/simplepyble/setup.py @@ -23,7 +23,7 @@ def is_necessary(name): # Generate the version string # TODO: Make the dev portion smarter by looking at tags. version_str = (root / "VERSION").read_text(encoding="utf-8").strip() -version_str += ".dev5" # ! Ensure it matches the intended release version! +version_str += "" # ! Ensure it matches the intended release version! # Get the long description from the README file long_description = (here / "README.rst").read_text(encoding="utf-8")