Skip to content

Commit

Permalink
cargo release
Browse files Browse the repository at this point in the history
  • Loading branch information
Adam McKee committed Jan 2, 2025
1 parent 146d705 commit 2bea69c
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 12 deletions.
6 changes: 3 additions & 3 deletions Cargo.lock

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

5 changes: 4 additions & 1 deletion fn_build/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## Unreleased - ReleaseDate

## 0.0.4 - 2024-01-02

### Added

- Windows fs path compatibility
Expand All @@ -25,7 +27,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Parse and build APIs for creating deployable Lambda functions

[Unreleased]: https://github.com/eighty4/l3/compare/l3_fn_build-v0.0.3...HEAD
[Unreleased]: https://github.com/eighty4/l3/compare/l3_fn_build-v0.0.4...HEAD
[0.0.4]: https://github.com/eighty4/l3/compare/l3_fn_build-v0.0.3...l3_fn_build-v0.0.4
[0.0.3]: https://github.com/eighty4/l3/compare/l3_fn_build-v0.0.2...l3_fn_build-v0.0.3
[0.0.2]: https://github.com/eighty4/l3/compare/v0.0.1...l3_fn_build-v0.0.2
[0.0.1]: https://github.com/eighty4/l3/releases/tag/v0.0.1
4 changes: 2 additions & 2 deletions fn_build/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "l3_fn_build"
version = "0.0.3"
version = "0.0.4"
description = "Lib for Lambda function builds"
authors = { workspace = true }
edition = { workspace = true }
Expand All @@ -14,7 +14,7 @@ path = "src/lib.rs"
[dependencies]
anyhow = { workspace = true }
base64 = "0.22.1"
l3_api_base = { path = "../l3_base", version = "0.0.3" }
l3_api_base = { path = "../l3_base", version = "0.0.4" }
rustpython-parser = "0.4.0"
serde = { workspace = true }
serde_json = { workspace = true }
Expand Down
5 changes: 4 additions & 1 deletion l3_base/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## Unreleased - ReleaseDate

## 0.0.4 - 2024-01-02

## 0.0.3 - 2024-12-20

## 0.0.2 - 2024-12-20
Expand All @@ -17,7 +19,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- collect_files(PathBuf) recursive dir walk function

[Unreleased]: https://github.com/eighty4/l3/compare/l3_api_base-v0.0.3...HEAD
[Unreleased]: https://github.com/eighty4/l3/compare/l3_api_base-v0.0.4...HEAD
[0.0.3]: https://github.com/eighty4/l3/compare/l3_api_base-v0.0.3...l3_api_base-v0.0.4
[0.0.3]: https://github.com/eighty4/l3/compare/l3_api_base-v0.0.2...l3_api_base-v0.0.3
[0.0.2]: https://github.com/eighty4/l3/compare/v0.0.1...l3_api_base-v0.0.2
[0.0.1]: https://github.com/eighty4/l3/releases/tag/v0.0.1
2 changes: 1 addition & 1 deletion l3_base/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "l3_api_base"
version = "0.0.3"
version = "0.0.4"
description = "Shared APIs for LLL crates"
authors = { workspace = true }
edition = { workspace = true }
Expand Down
5 changes: 4 additions & 1 deletion l3_cli/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## Unreleased - ReleaseDate

## 0.0.4 - 2024-01-02

### Added

- Windows compatibility
Expand All @@ -29,7 +31,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- CLI placeholder program parses pwd for functions, debug prints and exits

[Unreleased]: https://github.com/eighty4/l3/compare/l3_cli-v0.0.3...HEAD
[Unreleased]: https://github.com/eighty4/l3/compare/l3_cli-v0.0.4...HEAD
[0.0.3]: https://github.com/eighty4/l3/compare/l3_cli-v0.0.3...l3_cli-v0.0.4
[0.0.3]: https://github.com/eighty4/l3/compare/l3_cli-v0.0.2...l3_cli-v0.0.3
[0.0.2]: https://github.com/eighty4/l3/compare/v0.0.1...l3_cli-v0.0.2
[0.0.1]: https://github.com/eighty4/l3/releases/tag/v0.0.1
6 changes: 3 additions & 3 deletions l3_cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "l3_cli"
version = "0.0.3"
version = "0.0.4"
description = "Lambda compute tooling"
authors = { workspace = true }
edition = { workspace = true }
Expand All @@ -13,8 +13,8 @@ path = "src/main.rs"

[dependencies]
clap = { version = "4.5.23", features = ["derive"] }
l3_api_base = { path = "../l3_base", version = "0.0.3" }
l3_fn_build = { path = "../fn_build", version = "0.0.3" }
l3_api_base = { path = "../l3_base", version = "0.0.4" }
l3_fn_build = { path = "../fn_build", version = "0.0.4" }
serde_json = { workspace = true }
thiserror = { workspace = true }
tokio = { workspace = true }
Expand Down

0 comments on commit 2bea69c

Please sign in to comment.