Skip to content

Commit

Permalink
release
Browse files Browse the repository at this point in the history
  • Loading branch information
FloVanGH committed Aug 13, 2020
1 parent 0867666 commit 00f44b9
Show file tree
Hide file tree
Showing 3 changed files with 85 additions and 27 deletions.
88 changes: 73 additions & 15 deletions Cargo.lock

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

18 changes: 9 additions & 9 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,15 +25,15 @@ path = "src/lib.rs"
opt-level = 1

[dependencies]
orbtk-proc-macros = { version = "0.3.1-alpha3", path = "crates/proc-macros" }
orbtk-api = { version = "0.3.1-alpha3", path = "crates/api" }
orbtk-render = { version = "0.3.1-alpha3", path = "crates/render" }
orbtk-shell = { version = "0.3.1-alpha3", path = "crates/shell" }
orbtk-theme = { version = "0.3.1-alpha3", path="crates/theme" }
orbtk-theming = { version = "0.3.1-alpha3", path="crates/theming" }
orbtk-utils = { version = "0.3.1-alpha3", path = "crates/utils" }
orbtk-tree = { version = "0.3.1-alpha3", path="crates/tree" }
orbtk-widgets = { version = "0.3.1-alpha3", path="crates/widgets" }
orbtk-proc-macros = "0.3.1-alpha3"
orbtk-api = "0.3.1-alpha3"
orbtk-render = "0.3.1-alpha3"
orbtk-shell = "0.3.1-alpha3"
orbtk-theme = "0.3.1-alpha3"
orbtk-theming = "0.3.1-alpha3"
orbtk-utils = "0.3.1-alpha3"
orbtk-tree = "0.3.1-alpha3"
orbtk-widgets = "0.3.1-alpha3"
dces = "0.3"

[dev-dependencies]
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

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

The Orbital Widget Toolkit is a cross-platform (G)UI toolkit for building scalable user interfaces with the programming language Rust. It's based
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.
Expand Down Expand Up @@ -53,7 +53,7 @@ To include OrbTk in your project, add this dependency
line to your `Cargo.toml` file:

```text
orbtk = "0.3.1-alpha2"
orbtk = "0.3.1-alpha3"
```

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

0 comments on commit 00f44b9

Please sign in to comment.