Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[RSDK-9497] [RSDK-9696] Release 0.4.0 #380

Merged
merged 2 commits into from
Jan 13, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ description = "Viam RDK for microcontroller"
edition = "2021"
license = "AGPL-3.0"
repository = "https://github.com/viamrobotics/micro-rdk"
version = "0.4.0-rc2"
version = "0.4.0"
rust-version = "1.83"

[profile.release]
Expand Down
2 changes: 1 addition & 1 deletion micro-rdk-ffi/micrordklib-idf-component/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
idf_component_register(INCLUDE_DIRS "${CMAKE_CURRENT_SOURCE_DIR}")
idf_build_set_property(INCLUDE_DIRECTORIES "${CMAKE_CURRENT_BINARY_DIR}/assets" APPEND)

set(LIBMICRORDK_VERSION v0.3.0)
set(LIBMICRORDK_VERSION v0.4.0)
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

set(LIBMICRORDK_URL https://github.com/viamrobotics/micro-rdk/releases/download/${LIBMICRORDK_VERSION}/micro-rdk-lib.zip)
set(LIBMICRORDK_PATH ${CMAKE_BINARY_DIR}/import/micro-rdk-lib.zip)

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: "0.4.0-rc2"
version: "0.4.0"
description: "Micro-RDK lib"
dependencies:
## Required IDF version
Expand Down
2 changes: 1 addition & 1 deletion templates/module/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "{{project-name}}"
version = "0.3.3"
version = "0.0.1"
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It didn't make much sense to me that we were generating projects and modules that had the same version as the micro-rdk from which they were generated. If you disagree I can drop this out easily enough.

I'd filed it as https://viam.atlassian.net/browse/RSDK-9696 but we hadn't got around to triaging it yet. Still, this seems as good a time as any, and it will mean one less version we need to hand-edit on each release (until we have a more automated release process).

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I agree.

edition = "2021"
authors = ["{{authors}}"]
resolver = "2"
Expand Down
2 changes: 1 addition & 1 deletion templates/project/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "{{project-name}}"
version = "0.3.3"
version = "0.0.1"
edition = "2021"
authors = ["{{authors}}"]
resolver = "2"
Expand Down
Loading