Skip to content

Commit

Permalink
Version 0.13.1
Browse files Browse the repository at this point in the history
<a name="v0.13.1"></a>
### v0.13.1 (2019-10-29)

#### Bug Fixes

*   Don't deadlock when collecting and cloning a thread concurrently ([d736895](d736895))
* **doc:**  Correct the style.css path ([2cee5cf](2cee5cf))
  • Loading branch information
Marwes committed Oct 29, 2019
1 parent fc27422 commit bdf8132
Show file tree
Hide file tree
Showing 22 changed files with 107 additions and 96 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
<a name="v0.13.1"></a>
### v0.13.1 (2019-10-29)


#### Bug Fixes

* Don't deadlock when collecting and cloning a thread concurrently ([d7368950](https://github.com/gluon-lang/gluon/commit/d7368950d9310f383cebcbaf841382181701da00))
* **doc:** Correct the style.css path ([2cee5cff](https://github.com/gluon-lang/gluon/commit/2cee5cffab0c1df604a45e3272e92f69624e6b41))



<a name="v0.13.0"></a>
## v0.13.0 (2019-10-27)

Expand Down
88 changes: 44 additions & 44 deletions Cargo.lock

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

20 changes: 10 additions & 10 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gluon"
version = "0.13.0" # GLUON
version = "0.13.1" # GLUON
authors = ["Markus <[email protected]>"]
build = "build.rs"
edition = "2018"
Expand All @@ -25,12 +25,12 @@ name = "gluon"
path = "src/lib.rs"

[dependencies]
gluon_base = { path = "base", version = "0.13.0" } # GLUON
gluon_check = { path = "check", version = "0.13.0" } # GLUON
gluon_parser = { path = "parser", version = "0.13.0" } # GLUON
gluon_codegen = { path = "codegen", version = "0.13.0" } # GLUON
gluon_vm = { path = "vm", version = "0.13.0", default-features = false } # GLUON
gluon_format = { path = "format", version = "0.13.0", default-features = false } # GLUON
gluon_base = { path = "base", version = "0.13.1" } # GLUON
gluon_check = { path = "check", version = "0.13.1" } # GLUON
gluon_parser = { path = "parser", version = "0.13.1" } # GLUON
gluon_codegen = { path = "codegen", version = "0.13.1" } # GLUON
gluon_vm = { path = "vm", version = "0.13.1", default-features = false } # GLUON
gluon_format = { path = "format", version = "0.13.1", default-features = false } # GLUON

log = "0.4"
quick-error = "1.0.0"
Expand Down Expand Up @@ -63,7 +63,7 @@ rand = { version = "0.7", optional = true }
rand_xorshift = { version = "0.2", optional = true }

[build-dependencies]
gluon_base = { path = "base", version = "0.13.0" } # GLUON
gluon_base = { path = "base", version = "0.13.1" } # GLUON

itertools = "0.8"
little-skeptic = { version = "0.15.0", optional = true }
Expand Down Expand Up @@ -91,8 +91,8 @@ bincode = "1"

pulldown-cmark = "0.6"

gluon_completion = { path = "completion", version = "0.13.0" } # GLUON
gluon_codegen = { path = "codegen", version = "0.13.0" } # GLUON
gluon_completion = { path = "completion", version = "0.13.1" } # GLUON
gluon_codegen = { path = "codegen", version = "0.13.1" } # GLUON

[features]
default = ["regex", "random"]
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,7 @@ Gluon requires a recent Rust compiler to build (1.9.0 or later) and is available

```toml
[dependencies]
gluon = "0.13.0"
gluon = "0.13.1"
```

### Other languages
Expand Down
2 changes: 1 addition & 1 deletion base/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gluon_base"
version = "0.13.0" # GLUON
version = "0.13.1" # GLUON
authors = ["Markus <[email protected]>"]
edition = "2018"

Expand Down
2 changes: 1 addition & 1 deletion base/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#![doc(html_root_url = "https://docs.rs/gluon_base/0.13.0")] // # GLUON
#![doc(html_root_url = "https://docs.rs/gluon_base/0.13.1")] // # GLUON
#![allow(unknown_lints)]
//! The base crate contains pervasive types used in the compiler such as type representations, the
//! AST and some basic containers.
Expand Down
4 changes: 2 additions & 2 deletions c-api/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gluon_c-api"
version = "0.13.0" # GLUON
version = "0.13.1" # GLUON
authors = ["Markus Westerlind <[email protected]>"]
edition = "2018"

Expand All @@ -19,7 +19,7 @@ travis-ci = { repository = "gluon-lang/gluon" }
crate-type = ["cdylib"]

[dependencies]
gluon = { version = "0.13.0", path = ".." } # GLUON
gluon = { version = "0.13.1", path = ".." } # GLUON

[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
libc = "0.2.14"
Expand Down
2 changes: 1 addition & 1 deletion c-api/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//! A (WIP) C API allowing use of gluon in other langauges than Rust.
#![doc(html_root_url = "https://docs.rs/gluon_c-api/0.13.0")] // # GLUON
#![doc(html_root_url = "https://docs.rs/gluon_c-api/0.13.1")] // # GLUON

use std::{slice, str};

Expand Down
8 changes: 4 additions & 4 deletions check/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gluon_check"
version = "0.13.0" # GLUON
version = "0.13.1" # GLUON
authors = ["Markus <[email protected]>"]
edition = "2018"

Expand Down Expand Up @@ -30,13 +30,13 @@ codespan-reporting = "0.3"

strsim = "0.9.0"

gluon_base = { path = "../base", version = "0.13.0" } # GLUON
gluon_codegen = { path = "../codegen", version = "0.13.0" } # GLUON
gluon_base = { path = "../base", version = "0.13.1" } # GLUON
gluon_codegen = { path = "../codegen", version = "0.13.1" } # GLUON

[dev-dependencies]
env_logger = "0.7"

gluon_parser = { path = "../parser", version = "0.13.0" } # GLUON
gluon_parser = { path = "../parser", version = "0.13.1" } # GLUON
gluon_format = { path = "../format", version = ">=0.9" }

collect-mac = "0.1.0"
Expand Down
2 changes: 1 addition & 1 deletion check/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
//! If an AST passes the checks in `Typecheck::typecheck_expr` (which runs all of theses checks
//! the expression is expected to compile succesfully (if it does not it should be considered an
//! internal compiler error.
#![doc(html_root_url = "https://docs.rs/gluon_check/0.13.0")] // # GLUON
#![doc(html_root_url = "https://docs.rs/gluon_check/0.13.1")] // # GLUON

#[macro_use]
extern crate collect_mac;
Expand Down
2 changes: 1 addition & 1 deletion codegen/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gluon_codegen"
version = "0.13.0" # GLUON
version = "0.13.1" # GLUON
authors = ["Markus <[email protected]>"]

license = "MIT"
Expand Down
8 changes: 4 additions & 4 deletions completion/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gluon_completion"
version = "0.13.0" # GLUON
version = "0.13.1" # GLUON
authors = ["Markus <[email protected]>"]
edition = "2018"

Expand All @@ -17,11 +17,11 @@ itertools = "0.8"
walkdir = "2"
codespan = "0.3"

gluon_base = { path = "../base", version = "0.13.0" } # GLUON
gluon_base = { path = "../base", version = "0.13.1" } # GLUON

[dev-dependencies]
collect-mac = "0.1.0"
env_logger = "0.7"

gluon_check = { path = "../check", version = "0.13.0" } # GLUON
gluon_parser = { path = "../parser", version = "0.13.0" } # GLUON
gluon_check = { path = "../check", version = "0.13.1" } # GLUON
gluon_parser = { path = "../parser", version = "0.13.1" } # GLUON
2 changes: 1 addition & 1 deletion completion/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//! Primitive auto completion and type quering on ASTs
#![doc(html_root_url = "https://docs.rs/gluon_completion/0.13.0")] // # GLUON
#![doc(html_root_url = "https://docs.rs/gluon_completion/0.13.1")] // # GLUON

extern crate codespan;
extern crate either;
Expand Down
Loading

0 comments on commit bdf8132

Please sign in to comment.