Skip to content

Commit

Permalink
Merge pull request #202 from quartiq/release-v0.10
Browse files Browse the repository at this point in the history
release v0.10
  • Loading branch information
jordens authored Apr 22, 2024
2 parents 15aea40 + d12889f commit 412fbeb
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased](https://github.com/quartiq/miniconf/compare/v0.9.0...main)
## [0.10.0](https://github.com/quartiq/miniconf/compare/v0.9.0...v0.10.0) - 2024-04-22

### Changed

Expand Down Expand Up @@ -36,7 +36,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
* `TreeKey::len()`
* The `typ` derive macro attribute

## [0.9.0](https://github.com/quartiq/miniconf/compare/v0.8.0...v0.9.0)
## [0.9.0](https://github.com/quartiq/miniconf/compare/v0.8.0...v0.9.0) - 2023-11-01

### Changed

Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[workspace]
members = [
"miniconf",
"miniconf_derive",
"miniconf",
"miniconf_mqtt",
]
resolver = "2"
6 changes: 3 additions & 3 deletions miniconf/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "miniconf"
# Don't forget to change `miniconf_derive`'s and `miniconf_mqtt`'s version as well, including their releases.
version = "0.9.0"
# Sync all crate versions and the py client
version = "0.10.0"
authors = ["James Irwin <irwineffect@gmail.com>", "Ryan Summers <ryan.summers@vertigo-designs.com", "Robert Jördens <rj@quartiq.de>"]
edition = "2021"
license = "MIT"
Expand All @@ -14,7 +14,7 @@ resolver = "2"

[dependencies]
serde = { version = "1.0.120", default-features = false }
miniconf_derive = { path = "../miniconf_derive", version = "0.9" }
miniconf_derive = { path = "../miniconf_derive", version = "0.10" }
itoa = "1.0.4"
serde-json-core = { version = "0.5.1", optional = true }
postcard = { version = "1.0.8", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion miniconf_derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "miniconf_derive"
version = "0.9.0"
version = "0.10.0"
rust-version = "1.70.0"
authors = ["James Irwin <irwineffect@gmail.com>", "Ryan Summers <ryan.summers@vertigo-designs.com", "Robert Jördens <rj@quartiq.de>"]
edition = "2021"
Expand Down
4 changes: 2 additions & 2 deletions miniconf_mqtt/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "miniconf_mqtt"
version = "0.9.0"
version = "0.10.0"
rust-version = "1.70.0"
authors = ["James Irwin <irwineffect@gmail.com>", "Ryan Summers <ryan.summers@vertigo-designs.com", "Robert Jördens <rj@quartiq.de>"]
edition = "2021"
Expand All @@ -17,7 +17,7 @@ std = []
[lib]

[dependencies]
miniconf = { version = "0.9", features = ["json-core"], path = "../miniconf" }
miniconf = { version = "0.10", features = ["json-core"], path = "../miniconf" }
minimq = "0.8.0"
smlang = "0.6"
embedded-io = "0.6"
Expand Down
2 changes: 1 addition & 1 deletion py/miniconf-mqtt/miniconf/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
""" Miniconf version file. """

# The semantic version of Miniconf.
__version__ = '0.1.0'
__version__ = '0.10.0'

0 comments on commit 412fbeb

Please sign in to comment.