Skip to content

Commit

Permalink
Merge pull request #47 from harlem88/fw-0.6.1
Browse files Browse the repository at this point in the history
Forward port changes from release v0.6
  • Loading branch information
sorru94 authored Apr 10, 2024
2 parents 1b898db + e04f850 commit 4114d4c
Show file tree
Hide file tree
Showing 5 changed files with 94 additions and 61 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ 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).

## [0.6.1] - 2023-12-21

### Changed

- Rust: lower the minimum bound for the library dependencies

## [0.6.0] - 2023-12-13

Expand Down
2 changes: 1 addition & 1 deletion python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ build-backend = "setuptools.build_meta"
[project]
name = "astarte_message_hub_proto"
description="Astarte message hub protocol buffers for Python"
version = "0.6.0"
version = "0.6.1"
authors = [
{ name = "Simone Orru", email = "simone.orru@secomind.com" }
]
Expand Down
118 changes: 70 additions & 48 deletions rust/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 11 additions & 5 deletions rust/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,15 @@ license = "Apache-2.0"
rust-version = "1.66.1"

[workspace.dependencies]
clap = "=4.3.24"
color-eyre = "0.6.2"
chrono = "0.4.0"
clap = "4.3.24"
color-eyre = "0.6.0"
env_logger = "0.10.0"
log = "0.4.0"
pbjson-types = "0.6.0"
prost = "0.12.1"
tonic = "0.10.2"
tonic-build = "0.10.2"
prost = "0.12.0"
thiserror = "1.0.0"
tokio = "1.33.0"
tonic = "0.10.0"
tonic-build = "0.10.0"
uuid = "1.0.0"
Loading

0 comments on commit 4114d4c

Please sign in to comment.