Skip to content

Commit

Permalink
Merge pull request #290 from Marwes/master
Browse files Browse the repository at this point in the history
Fix links
  • Loading branch information
Marwes authored May 25, 2017
2 parents bc25c4f + f128eae commit 835ddf3
Show file tree
Hide file tree
Showing 15 changed files with 30 additions and 30 deletions.
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.1" # GLUON
version = "0.4.2" # 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.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
gluon_base = { path = "base", version = "0.4.2" } # GLUON
gluon_check = { path = "check", version = "0.4.2" } # GLUON
gluon_parser = { path = "parser", version = "0.4.2" } # GLUON
gluon_vm = { path = "vm", version = "0.4.2" } # GLUON

log = "0.3.6"
quick-error = "1.0.0"
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ Gluon is a small, statically-typed, functional programming language designed for

## Usage

### Try online (WIP)
### Try online

You can try gluon in your browser at the [try_gluon](http://ec2-52-29-1-213.eu-central-1.compute.amazonaws.com/) server. ([Github](https://github.com/gluon-lang/try_gluon))
You can try gluon in your browser at the [try_gluon](http://52.28.135.57:8080/) server. ([Github](https://github.com/gluon-lang/try_gluon))

### Installation

Expand All @@ -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.1"
gluon = "0.4.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.4.1" # GLUON
version = "0.4.2" # GLUON
authors = ["Markus <[email protected]>"]

license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion base/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,6 +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
#![doc(html_root_url="https://docs.rs/gluon_base/0.4.2")] // # 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.1" # GLUON
version = "0.4.2" # 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.1", path = ".." } # GLUON
gluon = { version = "0.4.2", path = ".." } # GLUON

[features]
test = ["gluon/test"]
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.4.1/gluon_c-api")] // # GLUON
#![doc(html_root_url="https://docs.rs/gluon_c-api/0.4.2")] // # 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.1" # GLUON
version = "0.4.2" # 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.1" } # GLUON
gluon_parser = { path = "../parser", version = "0.4.1", optional = true } # GLUON
gluon_base = { path = "../base", version = "0.4.2" } # GLUON
gluon_parser = { path = "../parser", version = "0.4.2", optional = true } # GLUON

[dev-dependencies]
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.4.1/gluon_check")] // # GLUON
#![doc(html_root_url="https://docs.rs/gluon_check/0.4.2")] // # 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.1" # GLUON
version = "0.4.2" # 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.1" } # GLUON
gluon_base = { path = "../base", version = "0.4.2" } # GLUON

[dev-dependencies]
collect-mac = "0.1.0"
Expand Down
2 changes: 1 addition & 1 deletion parser/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,7 +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
#![doc(html_root_url="https://docs.rs/gluon_parser/0.4.2")] // # 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.1" # GLUON
version = "0.4.2" # GLUON
authors = ["Markus Westerlind <[email protected]>"]

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

[dependencies]

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

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

#[macro_use]
extern crate log;
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +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
#![doc(html_root_url="https://docs.rs/gluon/0.4.2")] // # GLUON
#[macro_use]
extern crate log;
#[macro_use]
Expand Down
8 changes: 4 additions & 4 deletions vm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gluon_vm"
version = "0.4.1" # GLUON
version = "0.4.2" # GLUON
authors = ["Markus <[email protected]>"]

license = "MIT"
Expand All @@ -25,9 +25,9 @@ futures = "0.1.0"
typed-arena = "1.2.0"
smallvec = "0.2.1"

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", optional = true } # GLUON
gluon_base = { path = "../base", version = "0.4.2" } # GLUON
gluon_check = { path = "../check", version = "0.4.2" } # GLUON
gluon_parser = { path = "../parser", version = "0.4.2", optional = true } # GLUON

[build-dependencies]
lalrpop = { version = "0.12.5", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion vm/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//! Crate which contain the virtual machine which executes gluon programs
#![doc(html_root_url="https://docs.rs/gluon_vm/0.4.1/gluon_vm")] // # GLUON
#![doc(html_root_url="https://docs.rs/gluon_vm/0.4.2")] // # GLUON

#[macro_use]
extern crate log;
Expand Down

0 comments on commit 835ddf3

Please sign in to comment.