Skip to content

Commit

Permalink
Release 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
levkk committed Dec 1, 2024
1 parent 04e7e4a commit 1ab8da4
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

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

8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,10 @@ async fn main() {

See [examples](https://github.com/levkk/rwf/tree/main/examples) for common use cases.

## 🚧 Status 🚧
## 🚦 Status 🚦

Rwf is in early development and not ready for production. Many features and documentation are incomplete. Contributions are welcome. Please see [CONTRIBUTING](https://github.com/levkk/rwf/tree/main/CONTRIBUTING.md) for guidelines, [ARCHITECTURE](https://github.com/levkk/rwf/tree/main/ARCHITECTURE.md) for a tour of the code, and [ROADMAP](https://github.com/levkk/rwf/tree/main/ROADMAP.md) for a non-exhaustive list of desired features.
Rwf is in beta and looking for early adopters. Most features are in a good state and documentation is in a decent state.

### 🔧 Contributions 🔧

Contributions are welcome. Please see [CONTRIBUTING](https://github.com/levkk/rwf/tree/main/CONTRIBUTING.md) for guidelines, [ARCHITECTURE](https://github.com/levkk/rwf/tree/main/ARCHITECTURE.md) for a tour of the code, and [ROADMAP](https://github.com/levkk/rwf/tree/main/ROADMAP.md) for a non-exhaustive list of desired features.
2 changes: 1 addition & 1 deletion examples/django/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 examples/files/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ version = "0.1.0"
edition = "2021"

[dependencies]
rwf = { version = "0.1.7", path = "../../rwf" }
rwf = { path = "../../rwf" }
tokio = { version = "1", features = ["full"] }
2 changes: 1 addition & 1 deletion examples/rails/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 rwf-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ readme = "README.md"

[dependencies]
clap = { version = "4.5.18", features = ["derive"] }
rwf = { path = "../rwf", version = "0.1.14" }
rwf = { path = "../rwf", version = "0.2" }
tokio = { version = "1", features = ["full"] }
log = "0.4"
time = "0.3"
Expand Down
2 changes: 1 addition & 1 deletion rwf/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rwf"
version = "0.1.15"
version = "0.2.0"
edition = "2021"
license = "MIT"
description = "Framework for building web applications in the Rust programming language"
Expand Down

0 comments on commit 1ab8da4

Please sign in to comment.