Skip to content

Commit

Permalink
Merge pull request #289 from Marwes/docs
Browse files Browse the repository at this point in the history
chore: Version 0.4.1
  • Loading branch information
Marwes authored May 23, 2017
2 parents f9a50f6 + 20d937b commit bc25c4f
Show file tree
Hide file tree
Showing 19 changed files with 151 additions and 96 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
<a name="v0.4.1"></a>
## v0.4.1 (2017-05-23)


#### Features

* Add the list function for simple Array to List conversion ([89019cef](https://github.com/gluon-lang/gluon/commit/89019cef90f167c46f15db9d43566b1ccb63549e), closes [#284](https://github.com/gluon-lang/gluon/issues/284))



<a name="v0.4.0"></a>
## v0.4.0 (2017-05-16)

Expand Down
10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]

name = "gluon"
version = "0.4.0" # GLUON
version = "0.4.1" # GLUON
authors = ["Markus <[email protected]>"]
build = "build.rs"

Expand All @@ -22,10 +22,10 @@ name = "gluon"
path = "src/lib.rs"

[dependencies]
gluon_base = { path = "base", version = "0.4.0" } # GLUON
gluon_check = { path = "check", version = "0.4.0" } # GLUON
gluon_parser = { path = "parser", version = "0.4.0" } # GLUON
gluon_vm = { path = "vm", version = "0.4.0" } # GLUON
gluon_base = { path = "base", version = "0.4.1" } # GLUON
gluon_check = { path = "check", version = "0.4.1" } # GLUON
gluon_parser = { path = "parser", version = "0.4.1" } # GLUON
gluon_vm = { path = "vm", version = "0.4.1" } # GLUON

log = "0.3.6"
quick-error = "1.0.0"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ Gluon requires a recent Rust compiler to build (1.9.0 or later) and is available

```toml
[dependencies]
gluon = "0.4.0"
gluon = "0.4.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.4.0" # GLUON
version = "0.4.1" # GLUON
authors = ["Markus <[email protected]>"]

license = "MIT"
Expand Down
1 change: 1 addition & 0 deletions base/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
//! The base crate contains pervasive types used in the compiler such as type representations, the
//! AST and some basic containers.
#![doc(html_root_url="https://docs.rs/gluon_base/0.4.1/gluon_base")] // # GLUON

extern crate log;
#[macro_use]
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.4.0" # GLUON
version = "0.4.1" # GLUON
authors = ["Markus Westerlind <[email protected]>"]

license = "MIT"
Expand All @@ -15,7 +15,7 @@ crate-type = ["staticlib"]

[dependencies]
libc = "0.2.14"
gluon = { version = "0.4.0", path = ".." } # GLUON
gluon = { version = "0.4.1", path = ".." } # GLUON

[features]
test = ["gluon/test"]
Expand Down
1 change: 1 addition & 0 deletions c-api/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +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.4.1/gluon_c-api")] // # GLUON

extern crate libc;
extern crate gluon;
Expand Down
6 changes: 3 additions & 3 deletions check/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gluon_check"
version = "0.4.0" # GLUON
version = "0.4.1" # GLUON
authors = ["Markus <[email protected]>"]

license = "MIT"
Expand All @@ -15,8 +15,8 @@ env_logger = { version = "0.3.4", optional = true }
log = "0.3.6"
union-find = "0.3.1"
smallvec = "0.2.1"
gluon_base = { path = "../base", version = "0.4.0" } # GLUON
gluon_parser = { path = "../parser", version = "0.4.0", optional = true } # GLUON
gluon_base = { path = "../base", version = "0.4.1" } # GLUON
gluon_parser = { path = "../parser", version = "0.4.1", optional = true } # GLUON

[dev-dependencies]
collect-mac = "0.1.0"
Expand Down
1 change: 1 addition & 0 deletions check/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +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.4.1/gluon_check")] // # GLUON

#[macro_use]
extern crate log;
Expand Down
4 changes: 2 additions & 2 deletions parser/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gluon_parser"
version = "0.4.0" # GLUON
version = "0.4.1" # GLUON
authors = ["Markus <[email protected]>"]

license = "MIT"
Expand All @@ -17,7 +17,7 @@ env_logger = { version = "0.3.4", optional = true }
quick-error = "1.0.0"
lalrpop-util = "0.12.5"
log = "0.3.6"
gluon_base = { path = "../base", version = "0.4.0" } # GLUON
gluon_base = { path = "../base", version = "0.4.1" } # GLUON

[dev-dependencies]
collect-mac = "0.1.0"
Expand Down
1 change: 1 addition & 0 deletions parser/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
//! The parser is a bit more complex than it needs to be as it needs to be fully specialized to
//! avoid a recompilation every time a later part of the compiler is changed. Due to this the
//! string interner and therefore also garbage collector needs to compiled before the parser.
#![doc(html_root_url="https://docs.rs/gluon_parser/0.4.1/gluon_parser")] // # GLUON

#[macro_use]
extern crate log;
Expand Down
6 changes: 3 additions & 3 deletions repl/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gluon_repl"
version = "0.4.0" # GLUON
version = "0.4.1" # GLUON
authors = ["Markus Westerlind <[email protected]>"]

license = "MIT"
Expand All @@ -14,8 +14,8 @@ name = "gluon"

[dependencies]

gluon_vm = { version = "0.4.0", path = "../vm" } # GLUON
gluon = { version = "0.4.0", path = ".." } # GLUON
gluon_vm = { version = "0.4.1", path = "../vm" } # GLUON
gluon = { version = "0.4.1", path = ".." } # GLUON

futures = "0.1.11"
clap = "2.22.0"
Expand Down
3 changes: 3 additions & 0 deletions repl/src/main.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
//! REPL for the gluon programming language
#![doc(html_root_url="https://docs.rs/gluon_repl/0.4.1/gluon_repl")] // # GLUON

#[macro_use]
extern crate log;
#[cfg(feature = "env_logger")]
Expand Down
1 change: 1 addition & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
//! behaviour. For information about how to use this library the best resource currently is the
//! [tutorial](https://github.com/gluon-lang/gluon/blob/master/TUTORIAL.md) which contains examples on
//! how to write gluon programs as well as how to run them using this library.
#![doc(html_root_url="https://docs.rs/gluon/0.4.1/gluon")] // # GLUON
#[macro_use]
extern crate log;
#[macro_use]
Expand Down
Loading

0 comments on commit bc25c4f

Please sign in to comment.