Skip to content

Commit 9efd83e

Browse files
authored
chore: release (#25)
1 parent b12ccf9 commit 9efd83e

5 files changed

Lines changed: 41 additions & 97 deletions

File tree

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,24 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

88
## [Unreleased]
9+
## What's Changed in 0.0.5
10+
* helper function for resolving the site package path across platforms by @micahpw in [#23](https://github.com/NREL/r2x-cli/pull/23)
11+
12+
**Full Changelog**: https://github.com/NREL/r2x-cli/compare/0.0.4...0.0.5
13+
14+
<!-- generated by git-cliff -->
15+
## What's Changed in 0.0.2
16+
* helper function for resolving the site package path across platforms by @micahpw in [#23](https://github.com/NREL/r2x-cli/pull/23)
17+
18+
**Full Changelog**: https://github.com/NREL/r2x-cli/compare/0.0.1...0.0.2
19+
20+
<!-- generated by git-cliff -->
21+
## What's Changed in 0.0.2
22+
* helper function for resolving the site package path across platforms by @micahpw in [#23](https://github.com/NREL/r2x-cli/pull/23)
23+
24+
**Full Changelog**: https://github.com/NREL/r2x-cli/compare/0.0.1...0.0.2
25+
26+
<!-- generated by git-cliff -->
927
## What's Changed in 0.0.4
1028
* fix: added utility module of platform compiled constants for python paths by @micahpw in [#16](https://github.com/NREL/r2x-cli/pull/16)
1129

Cargo.lock

Lines changed: 18 additions & 92 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ members = [
55
resolver = "2"
66

77
[workspace.package]
8-
version = "0.0.4"
8+
version = "0.0.5"
99
edition = "2021"
1010
authors = ["pesap <pesap@users.noreply.github.com>", "Micah Webb <micahpw@users.noreply.github.com>"]
1111
repository = "https://github.com/NREL/r2x-cli"
@@ -15,9 +15,9 @@ documentation = "https://docs.rs/r2x"
1515
rust-version = "1.72"
1616

1717
[workspace.dependencies]
18-
r2x-config = { path = "crates/r2x-config", version = "0.0.1" }
18+
r2x-config = { path = "crates/r2x-config", version = "0.0.2" }
1919
r2x-manifest = { path = "crates/r2x-manifest", version = "0.0.1" }
20-
r2x-python = { path = "crates/r2x-python", version = "0.0.1" }
20+
r2x-python = { path = "crates/r2x-python", version = "0.0.2" }
2121
r2x-logger = { path = "crates/r2x-logger", version = "0.0.1" }
2222
r2x-ast = { path = "crates/r2x-ast", version = "0.0.1" }
2323

crates/r2x-config/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "r2x-config"
3-
version = "0.0.1"
3+
version = "0.0.2"
44
edition = { workspace = true }
55
authors = { workspace = true }
66
repository = { workspace = true }

crates/r2x-python/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "r2x-python"
3-
version = "0.0.1"
3+
version = "0.0.2"
44
edition = { workspace = true }
55
authors = { workspace = true }
66
repository = { workspace = true }

0 commit comments

Comments
 (0)