diff --git a/Cargo.toml b/Cargo.toml index ea858b7a..6fb2738c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ edition = "2021" name = "simplersble" -version = "0.6.1-alpha1" +version = "0.6.1" 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 8c7a9bdb..56483fca 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -5,16 +5,18 @@ 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.1] - XXXX-XX-XX +[0.6.1] - 2023-03-14 -------------------- **Added** -- (Python) Generate source distribution sources. +- (Python) Generate source distribution packages. +- (SimpleDBus) Proxy objects keep track of their existence on the DBus object tree. **Changed** -- (Windows) Use the standard C++ exception handling model. +- Bluetooth enabled check was moved into the frontend modules. *(Thanks felixdollack!)* +- (Windows) Use the standard C++ exception handling model. *(Thanks TheFrankyJoe!)* **Fixed** diff --git a/setup.py b/setup.py index 6a93da2c..18312829 100644 --- a/setup.py +++ b/setup.py @@ -22,7 +22,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 += ".dev1" # ! 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 = (root / "simplepyble" / "README.rst").read_text(encoding="utf-8")