Skip to content

Commit bdf8132

Browse files
committed
Version 0.13.1
<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))
1 parent fc27422 commit bdf8132

File tree

22 files changed

+107
-96
lines changed

22 files changed

+107
-96
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
<a name="v0.13.1"></a>
2+
### v0.13.1 (2019-10-29)
3+
4+
5+
#### Bug Fixes
6+
7+
* Don't deadlock when collecting and cloning a thread concurrently ([d7368950](https://github.com/gluon-lang/gluon/commit/d7368950d9310f383cebcbaf841382181701da00))
8+
* **doc:** Correct the style.css path ([2cee5cff](https://github.com/gluon-lang/gluon/commit/2cee5cffab0c1df604a45e3272e92f69624e6b41))
9+
10+
11+
112
<a name="v0.13.0"></a>
213
## v0.13.0 (2019-10-27)
314

Cargo.lock

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

Cargo.toml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "gluon"
3-
version = "0.13.0" # GLUON
3+
version = "0.13.1" # GLUON
44
authors = ["Markus <[email protected]>"]
55
build = "build.rs"
66
edition = "2018"
@@ -25,12 +25,12 @@ name = "gluon"
2525
path = "src/lib.rs"
2626

2727
[dependencies]
28-
gluon_base = { path = "base", version = "0.13.0" } # GLUON
29-
gluon_check = { path = "check", version = "0.13.0" } # GLUON
30-
gluon_parser = { path = "parser", version = "0.13.0" } # GLUON
31-
gluon_codegen = { path = "codegen", version = "0.13.0" } # GLUON
32-
gluon_vm = { path = "vm", version = "0.13.0", default-features = false } # GLUON
33-
gluon_format = { path = "format", version = "0.13.0", default-features = false } # GLUON
28+
gluon_base = { path = "base", version = "0.13.1" } # GLUON
29+
gluon_check = { path = "check", version = "0.13.1" } # GLUON
30+
gluon_parser = { path = "parser", version = "0.13.1" } # GLUON
31+
gluon_codegen = { path = "codegen", version = "0.13.1" } # GLUON
32+
gluon_vm = { path = "vm", version = "0.13.1", default-features = false } # GLUON
33+
gluon_format = { path = "format", version = "0.13.1", default-features = false } # GLUON
3434

3535
log = "0.4"
3636
quick-error = "1.0.0"
@@ -63,7 +63,7 @@ rand = { version = "0.7", optional = true }
6363
rand_xorshift = { version = "0.2", optional = true }
6464

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

6868
itertools = "0.8"
6969
little-skeptic = { version = "0.15.0", optional = true }
@@ -91,8 +91,8 @@ bincode = "1"
9191

9292
pulldown-cmark = "0.6"
9393

94-
gluon_completion = { path = "completion", version = "0.13.0" } # GLUON
95-
gluon_codegen = { path = "codegen", version = "0.13.0" } # GLUON
94+
gluon_completion = { path = "completion", version = "0.13.1" } # GLUON
95+
gluon_codegen = { path = "codegen", version = "0.13.1" } # GLUON
9696

9797
[features]
9898
default = ["regex", "random"]

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -303,7 +303,7 @@ Gluon requires a recent Rust compiler to build (1.9.0 or later) and is available
303303

304304
```toml
305305
[dependencies]
306-
gluon = "0.13.0"
306+
gluon = "0.13.1"
307307
```
308308

309309
### Other languages

base/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "gluon_base"
3-
version = "0.13.0" # GLUON
3+
version = "0.13.1" # GLUON
44
authors = ["Markus <[email protected]>"]
55
edition = "2018"
66

base/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![doc(html_root_url = "https://docs.rs/gluon_base/0.13.0")] // # GLUON
1+
#![doc(html_root_url = "https://docs.rs/gluon_base/0.13.1")] // # GLUON
22
#![allow(unknown_lints)]
33
//! The base crate contains pervasive types used in the compiler such as type representations, the
44
//! AST and some basic containers.

c-api/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "gluon_c-api"
3-
version = "0.13.0" # GLUON
3+
version = "0.13.1" # GLUON
44
authors = ["Markus Westerlind <[email protected]>"]
55
edition = "2018"
66

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

2121
[dependencies]
22-
gluon = { version = "0.13.0", path = ".." } # GLUON
22+
gluon = { version = "0.13.1", path = ".." } # GLUON
2323

2424
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
2525
libc = "0.2.14"

c-api/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//! A (WIP) C API allowing use of gluon in other langauges than Rust.
2-
#![doc(html_root_url = "https://docs.rs/gluon_c-api/0.13.0")] // # GLUON
2+
#![doc(html_root_url = "https://docs.rs/gluon_c-api/0.13.1")] // # GLUON
33

44
use std::{slice, str};
55

check/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "gluon_check"
3-
version = "0.13.0" # GLUON
3+
version = "0.13.1" # GLUON
44
authors = ["Markus <[email protected]>"]
55
edition = "2018"
66

@@ -30,13 +30,13 @@ codespan-reporting = "0.3"
3030

3131
strsim = "0.9.0"
3232

33-
gluon_base = { path = "../base", version = "0.13.0" } # GLUON
34-
gluon_codegen = { path = "../codegen", version = "0.13.0" } # GLUON
33+
gluon_base = { path = "../base", version = "0.13.1" } # GLUON
34+
gluon_codegen = { path = "../codegen", version = "0.13.1" } # GLUON
3535

3636
[dev-dependencies]
3737
env_logger = "0.7"
3838

39-
gluon_parser = { path = "../parser", version = "0.13.0" } # GLUON
39+
gluon_parser = { path = "../parser", version = "0.13.1" } # GLUON
4040
gluon_format = { path = "../format", version = ">=0.9" }
4141

4242
collect-mac = "0.1.0"

check/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
//! If an AST passes the checks in `Typecheck::typecheck_expr` (which runs all of theses checks
44
//! the expression is expected to compile succesfully (if it does not it should be considered an
55
//! internal compiler error.
6-
#![doc(html_root_url = "https://docs.rs/gluon_check/0.13.0")] // # GLUON
6+
#![doc(html_root_url = "https://docs.rs/gluon_check/0.13.1")] // # GLUON
77

88
#[macro_use]
99
extern crate collect_mac;

0 commit comments

Comments
 (0)