Skip to content

Commit

Permalink
Version 0.10.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Marwes committed Jan 27, 2019
1 parent 1fd2fc6 commit a36bf15
Show file tree
Hide file tree
Showing 22 changed files with 119 additions and 92 deletions.
27 changes: 27 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,30 @@
<a name="v0.10.1"></a>
### v0.10.1 (2019-01-27)


#### Performance

* Use &mut to get better LLVM optimization (-2%) ([7bd988e5](https://github.com/gluon-lang/gluon/commit/7bd988e5de1be18c3b721ade509444fed990c9fc))
* Take the type directly from the pattern during record pattern compile ([5fc9b2e8](https://github.com/gluon-lang/gluon/commit/5fc9b2e85f2a13832ecc97140ff79efc6dd10f27))
* **parser:**
* Avoid one branch in Tokenizer::bump (parse_prelude: -6%) ([9cf39d4b](https://github.com/gluon-lang/gluon/commit/9cf39d4b4d1fe7c0647e0e3651f5c16b9e34a23e))
* Shrink lalrpop's symbol size slightly ([fff12fab](https://github.com/gluon-lang/gluon/commit/fff12fab3a705a689fad616a97cd7d9b633bdc52))
* **vm:**
* Use more specialized functions ([cd057689](https://github.com/gluon-lang/gluon/commit/cd057689789a677fb8e6420d8c9bd6b388865abf))
* Add and use extend for Stack manipulation ([41c9f0f6](https://github.com/gluon-lang/gluon/commit/41c9f0f6ffa4e0191e9edcaaf58947b5c28bbf9d))
* **vm/translate:**
* Avoid one field lookup loop in pattern desugaring ([292edb70](https://github.com/gluon-lang/gluon/commit/292edb709c667b7bbc4accb19834d418918c4e94))
* Hoist a remove_alias call outside the loop ([37fe8762](https://github.com/gluon-lang/gluon/commit/37fe8762573594143adaf9378adfde07238d0d8a))
* Avoid doing replacement for trivial matches ([bfbab7fd](https://github.com/gluon-lang/gluon/commit/bfbab7fd452e0efb51bb55c7bc296b82bfe2d217))
* Use FnvMap with variable replacement ([e6c4b614](https://github.com/gluon-lang/gluon/commit/e6c4b614562078b176601b014fda4ef5cb5736c7))

#### Bug Fixes

* Always do a gluon panic on arithemtic overflow ([82838a96](https://github.com/gluon-lang/gluon/commit/82838a962121066120f9643d67559c8287fbd0bb))
* **std.http:** Don't return NotReady if the http stream is broken ([a93ed235](https://github.com/gluon-lang/gluon/commit/a93ed2352f5aa432f1ea6ef85660ba352b514d98))



<a name="v0.10.0"></a>
## v0.10.0 (2019-01-05)

Expand Down
84 changes: 42 additions & 42 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.10.0" # GLUON
version = "0.10.1" # GLUON
authors = ["Markus <[email protected]>"]
build = "build.rs"
edition = "2018"
Expand All @@ -22,12 +22,12 @@ name = "gluon"
path = "src/lib.rs"

[dependencies]
gluon_base = { path = "base", version = "0.10.0" } # GLUON
gluon_check = { path = "check", version = "0.10.0" } # GLUON
gluon_parser = { path = "parser", version = "0.10.0" } # GLUON
gluon_codegen = { path = "codegen", version = "0.10.0" } # GLUON
gluon_vm = { path = "vm", version = "0.10.0", default-features = false } # GLUON
gluon_format = { path = "format", version = "0.10.0", default-features = false } # GLUON
gluon_base = { path = "base", version = "0.10.1" } # GLUON
gluon_check = { path = "check", version = "0.10.1" } # GLUON
gluon_parser = { path = "parser", version = "0.10.1" } # GLUON
gluon_codegen = { path = "codegen", version = "0.10.1" } # GLUON
gluon_vm = { path = "vm", version = "0.10.1", default-features = false } # GLUON
gluon_format = { path = "format", version = "0.10.1", 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.10.0" } # GLUON
gluon_base = { path = "base", version = "0.10.1" } # 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.10.0" } # GLUON
gluon_codegen = { path = "codegen", version = "0.10.0" } # GLUON
gluon_completion = { path = "completion", version = "0.10.1" } # GLUON
gluon_codegen = { path = "codegen", version = "0.10.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 @@ -295,7 +295,7 @@ Gluon requires a recent Rust compiler to build (1.9.0 or later) and is available

```toml
[dependencies]
gluon = "0.10.0"
gluon = "0.10.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.10.0" # GLUON
version = "0.10.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.10.0")] // # GLUON
#![doc(html_root_url = "https://docs.rs/gluon_base/0.10.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.10.0" # GLUON
version = "0.10.1" # GLUON
authors = ["Markus Westerlind <[email protected]>"]
edition = "2018"

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

[dependencies]
gluon = { version = "0.10.0", path = ".." } # GLUON
gluon = { version = "0.10.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.10.0")] // # GLUON
#![doc(html_root_url = "https://docs.rs/gluon_c-api/0.10.1")] // # 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.10.0" # GLUON
version = "0.10.1" # GLUON
authors = ["Markus <[email protected]>"]
edition = "2018"

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

strsim = "0.8.0"

gluon_base = { path = "../base", version = "0.10.0" } # GLUON
gluon_parser = { path = "../parser", version = "0.10.0", optional = true } # GLUON
gluon_base = { path = "../base", version = "0.10.1" } # GLUON
gluon_parser = { path = "../parser", version = "0.10.1", optional = true } # GLUON

[dev-dependencies]
env_logger = "0.6"

gluon_parser = { path = "../parser", version = "0.10.0" } # GLUON
gluon_parser = { path = "../parser", version = "0.10.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.10.0")] // # GLUON
#![doc(html_root_url = "https://docs.rs/gluon_check/0.10.1")] // # 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.10.0" # GLUON
version = "0.10.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.10.0" # GLUON
version = "0.10.1" # GLUON
authors = ["Markus <[email protected]>"]
edition = "2018"

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

gluon_base = { path = "../base", version = "0.10.0" } # GLUON
gluon_base = { path = "../base", version = "0.10.1" } # GLUON

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

gluon_check = { path = "../check", version = "0.10.0" } # GLUON
gluon_parser = { path = "../parser", version = "0.10.0" } # GLUON
gluon_check = { path = "../check", version = "0.10.1" } # GLUON
gluon_parser = { path = "../parser", version = "0.10.1" } # GLUON
Loading

0 comments on commit a36bf15

Please sign in to comment.