Skip to content
This repository has been archived by the owner on Apr 18, 2022. It is now read-only.

Commit

Permalink
Merge remote-tracking branch 'upstream/develop' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
ebkalderon committed Sep 7, 2016
2 parents a47a146 + 204a6bb commit 266819c
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 10 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,16 @@ adheres to [Semantic Versioning][sv].

[sv]: http://semver.org/

## 0.3.1 (2016-09-07)

### Fixed
* Fixed broken API reference link in `README.md`
* amethyst.rs book: link to API reference broken (issue [#86])
* Master branch no longer builds on beta/nightly Rust (issue [#94])

[#86]: https://github.com/amethyst/amethyst/issues/86
[#94]: https://github.com/amethyst/amethyst/issues/94

## 0.3.0 (2016-03-31)

### Added
Expand Down
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "amethyst"
version = "0.3.0"
version = "0.3.1"
authors = ["Eyal Kalderon <ebkalderon@gmail.com>"]
description = "Data-oriented game engine written in Rust"
keywords = ["game", "engine", "sdk", "amethyst"]
Expand All @@ -14,11 +14,11 @@ license = "MIT"

[dependencies.amethyst_ecs]
path = "src/ecs/"
version = "0.1.0"
version = "0.1.1"

[dependencies.amethyst_renderer]
path = "src/renderer/"
version = "0.3.0"
version = "0.3.1"

[dependencies.amethyst_config]
path = "src/config/"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
[![Build Status][s1]][tc] [![Crates.io][s2]][ci] [![MIT License][s3]][ml] [![Join the chat][s4]][gc]

[s1]: https://travis-ci.org/amethyst/amethyst.svg?branch=master
[s2]: https://img.shields.io/badge/crates.io-0.3.0-orange.svg
[s2]: https://img.shields.io/badge/crates.io-0.3.1-orange.svg
[s3]: https://img.shields.io/badge/license-MIT-blue.svg
[s4]: https://badges.gitter.im/amethyst/general.svg

Expand Down Expand Up @@ -63,7 +63,7 @@ Read the [online book][bk] for a comprehensive tutorial to using Amethyst. There
is also an online crate-level [API reference][ar].

[bk]: https://www.amethyst.rs/book/
[ar]: https://www.amethyst.rs/doc/
[ar]: https://www.amethyst.rs/doc/master/amethyst/

## Quick Example

Expand Down
2 changes: 1 addition & 1 deletion book/src/intro.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ This book is split into seven sections. This page is the first. The others are:

Read the crate-level [API documentation][ad] for more details.

[ad]: https://www.amethyst.rs/doc/amethyst/
[ad]: https://www.amethyst.rs/doc/master/amethyst/

## Why are you building this?

Expand Down
2 changes: 1 addition & 1 deletion src/ecs/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "amethyst_ecs"
version = "0.1.0"
version = "0.1.1"
authors = ["Eyal Kalderon <ebkalderon@gmail.com>"]
description = "Entity component system (ECS) library"
keywords = ["entity", "component", "system", "game", "amethyst"]
Expand Down
2 changes: 1 addition & 1 deletion src/renderer/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "amethyst_renderer"
version = "0.3.0"
version = "0.3.1"
authors = ["Eyal Kalderon <ebkalderon@gmail.com>"]
description = "High-level rendering engine with multiple backends"
keywords = ["game", "engine", "renderer", "3d", "amethyst"]
Expand Down
4 changes: 2 additions & 2 deletions src/renderer/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

[![Build Status][s1]][tc] [![Crates.io][s2]][ci] [![MIT License][s3]][ml] [![Join the chat][s4]][gc]

[s1]: https://api.travis-ci.org/amethyst/amethyst.svg
[s2]: https://img.shields.io/badge/crates.io-0.3.0-orange.svg
[s1]: https://api.travis-ci.org/ebkalderon/amethyst.svg
[s2]: https://img.shields.io/badge/crates.io-0.3.1-orange.svg
[s3]: https://img.shields.io/badge/license-MIT-blue.svg
[s4]: https://badges.gitter.im/amethyst/amethyst.svg

Expand Down

0 comments on commit 266819c

Please sign in to comment.