Skip to content

Commit

Permalink
Merge branch 'main' into vik-install-script
Browse files Browse the repository at this point in the history
  • Loading branch information
nasa42 committed Feb 2, 2025
2 parents 8ba1884 + 69cfde2 commit dfec2c8
Show file tree
Hide file tree
Showing 11 changed files with 258 additions and 98 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release-plz-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
id: parse-releases
run: |
echo "Parsing releases from release-plz..."
RELEASES="${{ steps.release-plz.outputs.releases }}"
RELEASES='${{ steps.release-plz.outputs.releases }}'
echo "Raw releases data: $RELEASES"
echo "$RELEASES" | jq -c '.[]' | while read release; do
Expand All @@ -53,7 +53,7 @@ jobs:
done
if [[ -f relevant_releases.jsonl ]]; then
FILTERED=$(cat relevant_releases.jsonl | jq -s)
FILTERED=$(cat relevant_releases.jsonl | jq -sc)
echo "Filtered releases: $FILTERED"
echo "releases=$FILTERED" >> $GITHUB_OUTPUT
else
Expand Down
25 changes: 14 additions & 11 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 @@ -3,7 +3,7 @@ resolver = "2"
members = ["agent", "core", "relay"]

[workspace.package]
version = "0.2.0"
version = "0.2.2"
edition = "2021"
rust-version = "1.83.0"
license = "MIT"
Expand Down
11 changes: 11 additions & 0 deletions agent/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.2.1](https://github.com/nasa42/webterm/compare/webterm-agent-v0.2.0...webterm-agent-v0.2.1) - 2025-02-02

### Added

- *(agent)* Implement daemonisation. (#86)

### Other

- Bump clap from 4.5.23 to 4.5.27 (#94)
- Bump gethostname from 0.5.0 to 1.0.0 (#93)

## [0.2.0](https://github.com/nasa42/webterm/compare/webterm-agent-v0.1.0...webterm-agent-v0.2.0) - 2025-01-25

### Added
Expand Down
8 changes: 4 additions & 4 deletions agent/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,20 +8,20 @@ license.workspace = true
repository.workspace = true

[dependencies]
clap = { version = "4.5.23", features = ["derive", "env"] }
clap = { version = "4.5.27", features = ["derive", "env"] }
daemonize = "0.5.0"
flatbuffers = "25.1.24"
futures = "0.3.31"
gethostname = "0.5.0"
gethostname = "1.0.0"
pty-process = { version = "0.4.0", features = ["async"] }
reqwest = "0.12.12"
semver = "1.0.24"
tokio = "1.42.0"
tokio-tungstenite = "0.26.1"
tokio-tungstenite = { version = "0.26.1", features = ["native-tls"] }
tracing = "0.1.41"
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }
url = "2.5.4"
webterm-core = { path = "../core", version = "0.2.0" }
webterm-core = { path = "../core", version = "0.2.2" }

[lints.clippy]
new_without_default = "allow"
10 changes: 10 additions & 0 deletions core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.2.1](https://github.com/nasa42/webterm/compare/webterm-core-v0.2.0...webterm-core-v0.2.1) - 2025-02-02

### Added

- *(agent)* Implement daemonisation. (#86)

### Other

- Bump rand from 0.8.5 to 0.9.0 (#92)

## [0.2.0](https://github.com/nasa42/webterm/compare/webterm-core-v0.1.0...webterm-core-v0.2.0) - 2025-01-25

### Added
Expand Down
Loading

0 comments on commit dfec2c8

Please sign in to comment.