Skip to content

Commit

Permalink
Merge pull request #118 from ineiti/update_version
Browse files Browse the repository at this point in the history
Updating versions to 0.8
  • Loading branch information
ineiti authored Sep 9, 2024
2 parents 87bc02a + b923340 commit 038616f
Show file tree
Hide file tree
Showing 30 changed files with 114 additions and 104 deletions.
12 changes: 11 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,26 @@ Following https://keepachangelog.com/en/1.1.0/ and using

## [Unreleased]

## [0.8.0] - 2024-09-09

### Changed
- Updated versions of most dependencies
- use tokio::sync::watch to pass configuration from `Translate` to `Broker`
- re-arranged modules:
- removed flnet
- put all arch-dependant code to flarch
- replaced feature-flags "wasm", "libc", "nosend" with #[cfg(target_family="(wasm|unix)")]
- updated login screen in flbrowser

### Added
### Removed
- flnet went into flarch and flmodules

### Added
- Create a template to fill out
- License files
- Devbox
- Create a proxy module that links to the html display
- Added a webproxy module to send GET requests from another node

## [0.7.0] - 2022-08-01

Expand Down
12 changes: 6 additions & 6 deletions cli/Cargo.lock

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

8 changes: 4 additions & 4 deletions cli/fledger/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fledger"
version = "0.7.0"
version = "0.8.0"
edition = "2021"
authors = ["Linus Gasser <linus@gasser.blue>"]
description = "The fledger server as a CLI"
Expand All @@ -12,9 +12,9 @@ keywords = ["network", "signalling", "webrtc"]
categories = ["network-programming"]

[dependencies]
flarch = { path = "../../flarch", version = "0.7" }
flmodules = { path = "../../flmodules", version = "0.7" }
flnode = { path = "../../flnode", version = "0.7" }
flarch = { path = "../../flarch", version = "0.8" }
flmodules = { path = "../../flmodules", version = "0.8" }
flnode = { path = "../../flnode", version = "0.8" }

clap = "4"
clap-verbosity-flag = "2"
Expand Down
6 changes: 3 additions & 3 deletions cli/flsignal/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "flsignal"
version = "0.7.0"
version = "0.8.0"
edition = "2021"
authors = ["Linus Gasser <linus@gasser.blue>"]
description = "The signalling server as a CLI"
Expand All @@ -12,8 +12,8 @@ keywords = ["network", "signalling", "webrtc"]
categories = ["network-programming"]

[dependencies]
flmodules = {path = "../../flmodules", version = "0.7"}
flarch = {path = "../../flarch", version = "0.7"}
flmodules = {path = "../../flmodules", version = "0.8"}
flarch = {path = "../../flarch", version = "0.8"}

clap = "4"
clap-verbosity-flag = "2"
Expand Down
10 changes: 5 additions & 5 deletions examples/ping-pong/libc/Cargo.lock

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

8 changes: 4 additions & 4 deletions examples/ping-pong/libc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[package]
edition = "2021"
name = "libc"
version = "0.7.0"
version = "0.8.0"

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

[dependencies]
flarch = {path = "../../../flarch", version = "0.7"}
flmodules = {path = "../../../flmodules", version = "0.7"}
shared = {path = "../shared", version = "0.7"}
flarch = {path = "../../../flarch", version = "0.8"}
flmodules = {path = "../../../flmodules", version = "0.8"}
shared = {path = "../shared", version = "0.8"}

clap = {version = "4", features = ["derive"]}
log = "0.4"
Expand Down
8 changes: 4 additions & 4 deletions examples/ping-pong/shared/Cargo.lock

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

8 changes: 4 additions & 4 deletions examples/ping-pong/shared/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[package]
edition = "2021"
name = "shared"
version = "0.7.0"
version = "0.8.0"

[dependencies]
flmodules = {path = "../../../flmodules", version = "0.7"}
flarch = {path = "../../../flarch", version = "0.7"}
flmodules = {path = "../../../flmodules", version = "0.8"}
flarch = {path = "../../../flarch", version = "0.8"}

async-trait = "0.1"
log = "0.4"
Expand All @@ -15,5 +15,5 @@ tokio = "1"
tokio-stream = "0.1"

[dev-dependencies]
flmodules = {path = "../../../flmodules", version = "0.7", features = ["testing"]}
flmodules = {path = "../../../flmodules", version = "0.8", features = ["testing"]}
tokio = {version = "1", features = ["rt-multi-thread"]}
10 changes: 5 additions & 5 deletions examples/ping-pong/wasm/Cargo.lock

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

8 changes: 4 additions & 4 deletions examples/ping-pong/wasm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[package]
name = "ping-pong-web"
version = "0.7.0"
version = "0.8.0"
authors = ["Anthony Dodd <dodd.anthonyjosiah@gmail.com>"]
edition = "2021"

[dependencies]
shared = {path = "../shared", version = "0.7"}
flmodules = {path = "../../../flmodules", version = "0.7"}
flarch = {path = "../../../flarch", version = "0.7"}
shared = {path = "../shared", version = "0.8"}
flmodules = {path = "../../../flmodules", version = "0.8"}
flarch = {path = "../../../flarch", version = "0.8"}

console_error_panic_hook = "0.1.6"
log = "0.4"
Expand Down
6 changes: 3 additions & 3 deletions examples/ping/Cargo.lock

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

4 changes: 2 additions & 2 deletions examples/ping/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ version = "0.1.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
flarch = {path = "../../flarch", version = "0.7"}
flmodules = {path = "../../flmodules", version = "0.7"}
flarch = {path = "../../flarch", version = "0.8"}
flmodules = {path = "../../flmodules", version = "0.8"}

clap = {version = "4", features = ["derive"]}
log = "0.4"
Expand Down
4 changes: 2 additions & 2 deletions flarch/Cargo.lock

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

4 changes: 2 additions & 2 deletions flarch/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ license = "MIT OR Apache-2.0"
name = "flarch"
readme = "README.md"
repository = "https://github.com/ineiti/fledger"
version = "0.7.0"
version = "0.8.0"

[features]
node = []

[dependencies]
flarch_macro = { version = "0.7", path = "../flarch_macro" }
flarch_macro = { version = "0.8", path = "../flarch_macro" }

chrono = "0.4"
env_logger = "0.11"
Expand Down
2 changes: 1 addition & 1 deletion flarch_macro/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 flarch_macro/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "flarch_macro"
version = "0.7.2"
version = "0.8.0"
edition = "2021"
authors = ["Linus Gasser <linus@gasser.blue>"]
description = "Arch-dependant macros"
Expand Down
Loading

0 comments on commit 038616f

Please sign in to comment.