Skip to content

Commit 00f44b9

Browse files
committed
release
1 parent 0867666 commit 00f44b9

File tree

3 files changed

+85
-27
lines changed

3 files changed

+85
-27
lines changed

Cargo.lock

Lines changed: 73 additions & 15 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,15 @@ path = "src/lib.rs"
2525
opt-level = 1
2626

2727
[dependencies]
28-
orbtk-proc-macros = { version = "0.3.1-alpha3", path = "crates/proc-macros" }
29-
orbtk-api = { version = "0.3.1-alpha3", path = "crates/api" }
30-
orbtk-render = { version = "0.3.1-alpha3", path = "crates/render" }
31-
orbtk-shell = { version = "0.3.1-alpha3", path = "crates/shell" }
32-
orbtk-theme = { version = "0.3.1-alpha3", path="crates/theme" }
33-
orbtk-theming = { version = "0.3.1-alpha3", path="crates/theming" }
34-
orbtk-utils = { version = "0.3.1-alpha3", path = "crates/utils" }
35-
orbtk-tree = { version = "0.3.1-alpha3", path="crates/tree" }
36-
orbtk-widgets = { version = "0.3.1-alpha3", path="crates/widgets" }
28+
orbtk-proc-macros = "0.3.1-alpha3"
29+
orbtk-api = "0.3.1-alpha3"
30+
orbtk-render = "0.3.1-alpha3"
31+
orbtk-shell = "0.3.1-alpha3"
32+
orbtk-theme = "0.3.1-alpha3"
33+
orbtk-theming = "0.3.1-alpha3"
34+
orbtk-utils = "0.3.1-alpha3"
35+
orbtk-tree = "0.3.1-alpha3"
36+
orbtk-widgets = "0.3.1-alpha3"
3737
dces = "0.3"
3838

3939
[dev-dependencies]

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
[![Build and test](https://github.com/redox-os/orbtk/workflows/CI/badge.svg)](https://github.com/redox-os/orbtk/actions)
44
[![MIT licensed](https://img.shields.io/badge/license-MIT-blue.svg)](./LICENSE)
5-
[![crates.io](https://img.shields.io/badge/crates.io-0.3.1alpha2-orange.svg)](https://crates.io/crates/orbtk/0.3.1-alpha2)
6-
[![docs.rs](https://img.shields.io/badge/docs-0.3.1alpha2-blue.svg)](https://docs.rs/crate/orbtk/0.3.1-alpha2)
5+
[![crates.io](https://img.shields.io/badge/crates.io-0.3.1alpha3-orange.svg)](https://crates.io/crates/orbtk/0.3.1-alpha3)
6+
[![docs.rs](https://img.shields.io/badge/docs-0.3.1alpha3-blue.svg)](https://docs.rs/crate/orbtk/0.3.1-alpha3)
77

88
The Orbital Widget Toolkit is a cross-platform (G)UI toolkit for building scalable user interfaces with the programming language Rust. It's based
99
on the [Entity Component System Pattern](https://en.wikipedia.org/wiki/Entity_component_system) and provides a [functional Reactive](https://en.wikipedia.org/wiki/Functional_reactive_programming)-like API.
@@ -53,7 +53,7 @@ To include OrbTk in your project, add this dependency
5353
line to your `Cargo.toml` file:
5454

5555
```text
56-
orbtk = "0.3.1-alpha2"
56+
orbtk = "0.3.1-alpha3"
5757
```
5858

5959
To use the latest development version of OrbTk, add this dependency

0 commit comments

Comments
 (0)