Skip to content

Commit

Permalink
Version 0.11.2
Browse files Browse the repository at this point in the history
<a name="v0.11.2"></a>
### v0.11.2 (2019-03-26)

#### Features

* **doc:**  Don't display the full path to types in the documentation ([a669faa](a669faa))

#### Bug Fixes

*   Ignore mdbook for osx builds ([7755967](7755967))
* **check:**  The alias reduction stack must be cleared between unifying function arguments ([170072a](170072a))
* **doc:**
  *  Correct all the remaining links in docs ([494675f](494675f))
  *  Point breadcrumb links correctly ([2a9cca7](2a9cca7))
  *  Point Rust defined types to their doc location ([b170f2f](b170f2f))
  *  Don't generate dead links in the documentation ([04131b7](04131b7))
  *  Point sibling module links correctly ([3bbf4a9](3bbf4a9))
  • Loading branch information
Marwes committed Mar 26, 2019
1 parent b0e3ec4 commit 8746070
Show file tree
Hide file tree
Showing 22 changed files with 114 additions and 93 deletions.
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,24 @@
<a name="v0.11.2"></a>
### v0.11.2 (2019-03-26)


#### Features

* **doc:** Don't display the full path to types in the documentation ([a669faaa](https://github.com/gluon-lang/gluon/commit/a669faaadadd388e23d36393204820d73316cbf5))

#### Bug Fixes

* Ignore mdbook for osx builds ([7755967a](https://github.com/gluon-lang/gluon/commit/7755967ad5e3defb5a1d1b1c10ce920ec030556d))
* **check:** The alias reduction stack must be cleared between unifying function arguments ([170072a4](https://github.com/gluon-lang/gluon/commit/170072a4734d4ec27c97c307aae7dc5b7d181dcc))
* **doc:**
* Correct all the remaining links in docs ([494675fe](https://github.com/gluon-lang/gluon/commit/494675fe3dbfc229c795ed3b076ce0c87c7297a1))
* Point breadcrumb links correctly ([2a9cca72](https://github.com/gluon-lang/gluon/commit/2a9cca7282a74bd13851a25f88f2b04d398f2dbe))
* Point Rust defined types to their doc location ([b170f2f3](https://github.com/gluon-lang/gluon/commit/b170f2f3a2bd9b8a33ca4eb7620ea0e7f2a26784))
* Don't generate dead links in the documentation ([04131b71](https://github.com/gluon-lang/gluon/commit/04131b71176bc824cee956aa431ab84063d98861))
* Point sibling module links correctly ([3bbf4a99](https://github.com/gluon-lang/gluon/commit/3bbf4a9927ef2060707bf8345cf028f6a03df658))



<a name="v0.11.1"></a>
### v0.11.1 (2019-02-13)

Expand Down
86 changes: 43 additions & 43 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.11.1" # GLUON
version = "0.11.2" # GLUON
authors = ["Markus <marwes91@gmail.com>"]
build = "build.rs"
edition = "2018"
Expand All @@ -22,12 +22,12 @@ name = "gluon"
path = "src/lib.rs"

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

log = "0.4"
quick-error = "1.0.0"
Expand Down Expand Up @@ -59,7 +59,7 @@ rand = { version = "0.6", optional = true }
rand_xorshift = { version = "0.1", optional = true }

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

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

pulldown-cmark = "0.2"

gluon_completion = { path = "completion", version = "0.11.1" } # GLUON
gluon_codegen = { path = "codegen", version = "0.11.1" } # GLUON
gluon_completion = { path = "completion", version = "0.11.2" } # GLUON
gluon_codegen = { path = "codegen", version = "0.11.2" } # 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 @@ -295,7 +295,7 @@ Gluon requires a recent Rust compiler to build (1.9.0 or later) and is available

```toml
[dependencies]
gluon = "0.11.1"
gluon = "0.11.2"
```

### 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.11.1" # GLUON
version = "0.11.2" # GLUON
authors = ["Markus <marwes91@gmail.com>"]
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.11.1")] // # GLUON
#![doc(html_root_url = "https://docs.rs/gluon_base/0.11.2")] // # 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.11.1" # GLUON
version = "0.11.2" # GLUON
authors = ["Markus Westerlind <marwes91@gmail.com>"]
edition = "2018"

Expand All @@ -15,7 +15,7 @@ documentation = "https://docs.rs/gluon"
crate-type = ["cdylib"]

[dependencies]
gluon = { version = "0.11.1", path = ".." } # GLUON
gluon = { version = "0.11.2", 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.11.1")] // # GLUON
#![doc(html_root_url = "https://docs.rs/gluon_c-api/0.11.2")] // # GLUON

extern crate gluon;
#[cfg(not(target_arch = "wasm32"))]
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.11.1" # GLUON
version = "0.11.2" # GLUON
authors = ["Markus <marwes91@gmail.com>"]
edition = "2018"

Expand All @@ -27,13 +27,13 @@ codespan-reporting = "0.2"

strsim = "0.8.0"

gluon_base = { path = "../base", version = "0.11.1" } # GLUON
gluon_codegen = { path = "../codegen", version = "0.11.1" } # GLUON
gluon_base = { path = "../base", version = "0.11.2" } # GLUON
gluon_codegen = { path = "../codegen", version = "0.11.2" } # GLUON

[dev-dependencies]
env_logger = "0.6"

gluon_parser = { path = "../parser", version = "0.11.1" } # GLUON
gluon_parser = { path = "../parser", version = "0.11.2" } # 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.11.1")] // # GLUON
#![doc(html_root_url = "https://docs.rs/gluon_check/0.11.2")] // # GLUON

extern crate codespan;
extern crate codespan_reporting;
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.11.1" # GLUON
version = "0.11.2" # GLUON
authors = ["Markus <marwes91@gmail.com>"]

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.11.1" # GLUON
version = "0.11.2" # GLUON
authors = ["Markus <marwes91@gmail.com>"]
edition = "2018"

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

gluon_base = { path = "../base", version = "0.11.1" } # GLUON
gluon_base = { path = "../base", version = "0.11.2" } # GLUON

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

gluon_check = { path = "../check", version = "0.11.1" } # GLUON
gluon_parser = { path = "../parser", version = "0.11.1" } # GLUON
gluon_check = { path = "../check", version = "0.11.2" } # GLUON
gluon_parser = { path = "../parser", version = "0.11.2" } # 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.11.1")] // # GLUON
#![doc(html_root_url = "https://docs.rs/gluon_completion/0.11.2")] // # GLUON

extern crate codespan;
extern crate either;
Expand Down
Loading

0 comments on commit 8746070

Please sign in to comment.