Skip to content

Commit

Permalink
chore(version): 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
justinrubek committed Dec 8, 2023
1 parent 33e8c06 commit afc6c7b
Show file tree
Hide file tree
Showing 5 changed files with 51 additions and 27 deletions.
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Changelog
All notable changes to this project will be documented in this file. See [conventional commits](https://www.conventionalcommits.org/) for commit guidelines.

- - -
## [0.2.0](https://github.com/justinrubek/thoenix/compare/0.1.0..0.2.0) - 2023-12-08
#### Build system
- **(cargo)** cargo update - ([33e8c06](https://github.com/justinrubek/thoenix/commit/33e8c068321d299576e485d80dd5619dbb904788)) - [@justinrubek](https://github.com/justinrubek)
- **(cargo)** add versioning info to cargo manifest - ([f4fc942](https://github.com/justinrubek/thoenix/commit/f4fc9422c2a2013570037086601c5acdcfce907e)) - [@justinrubek](https://github.com/justinrubek)
#### Continuous Integration
- **(github/actions)** add release action - ([0917eb4](https://github.com/justinrubek/thoenix/commit/0917eb484848667475a333d02bc65d90cb956545)) - [@justinrubek](https://github.com/justinrubek)
#### Refactoring
- **(nix)** restructure flake - ([3359c62](https://github.com/justinrubek/thoenix/commit/3359c62cb300d0a29f9e7aeeb2253f2cf9ec80da)) - [@justinrubek](https://github.com/justinrubek)
- default to opentofu - ([ed2c503](https://github.com/justinrubek/thoenix/commit/ed2c503e8504959a8564b1ffb370e57a8a0d4d9c)) - [@justinrubek](https://github.com/justinrubek)
- use project-base-directory crate - ([c7c9de5](https://github.com/justinrubek/thoenix/commit/c7c9de5868bbdfcc8cafe595eba65c6157979e64)) - [@justinrubek](https://github.com/justinrubek)
#### Style
- **(nix)** alejandra . - ([22ab04e](https://github.com/justinrubek/thoenix/commit/22ab04e80d22d28325f0b08bd2b408cbe11ff415)) - [@justinrubek](https://github.com/justinrubek)

- - -

Changelog generated by [cocogitto](https://github.com/cocogitto/cocogitto).
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.

6 changes: 2 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@ edition = "2021"
homepage = "https://github.com/justinrubek/thoenix"
license = "MIT"
repository = "https://github.com/justinrubek/thoenix"
version = "0.1.0"

[profile.release]
# opt-level = 2 # fast and small wasm
version = "0.2.0"

[profile.release.package]
28 changes: 17 additions & 11 deletions crates/http/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
[package]
name = "thoenix-http"
version = "0.1.0"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
version = "0.2.0"

[dependencies]
anyhow = "1.0.68"
Expand All @@ -14,12 +12,20 @@ futures-util = "0.3.26"
git2 = "0.16.1"
hyper = "0.14.24"
thiserror = "1.0.38"
# clap = { version = "4.0.19", features = ["derive"] }
# reqwest = { version = "0.11.12", features = ["rustls-tls"] }
# serde = { version = "1", features = ["derive"] }
# serde_json = "1.0.87"
tokio = { version = "1", features = ["full"] }
tokio-util = { version = "0.7.4", features = ["codec"] }
tower = { version = "0.4", features = ["util"] }
tower-http = { version = "0.3.0", features = ["fs", "cors"] }
tracing = "0.1.37"

[dependencies.tokio]
version = "1"
features = ["full"]

[dependencies.tokio-util]
version = "0.7.4"
features = ["codec"]

[dependencies.tower]
version = "0.4"
features = ["util"]

[dependencies.tower-http]
version = "0.3.0"
features = ["fs", "cors"]
18 changes: 9 additions & 9 deletions crates/ssh/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
[package]
name = "thoenix-ssh"
version = "0.1.0"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
version = "0.2.0"

[dependencies]
anyhow = "1.0.68"
Expand All @@ -17,11 +15,13 @@ git-pack = "0.30.1"
russh = "0.36.0"
russh-keys = "0.24.0"
thiserror = "1.0.38"
# clap = { version = "4.0.19", features = ["derive"] }
# reqwest = { version = "0.11.12", features = ["rustls-tls"] }
# serde = { version = "1", features = ["derive"] }
# serde_json = "1.0.87"
tokio = { version = "1", features = ["full"] }
tokio-util = { version = "0.7.4", features = ["codec"] }
tracing = "0.1.37"
tracing-subscriber = "0.3.16"

[dependencies.tokio]
version = "1"
features = ["full"]

[dependencies.tokio-util]
version = "0.7.4"
features = ["codec"]

0 comments on commit afc6c7b

Please sign in to comment.