Skip to content

Commit

Permalink
Update versions for release
Browse files Browse the repository at this point in the history
  • Loading branch information
kdewald committed Mar 14, 2023
1 parent 55bad14 commit 818eeb4
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
8 changes: 5 additions & 3 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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**

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down

0 comments on commit 818eeb4

Please sign in to comment.