Skip to content

Commit

Permalink
Merge pull request #401 from bjz/version-bump
Browse files Browse the repository at this point in the history
Version bump
  • Loading branch information
brendanzab committed Mar 24, 2016
2 parents 7250b7f + 3d1811e commit 99dfd89
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 13 deletions.
20 changes: 15 additions & 5 deletions README.md
Expand Up @@ -4,34 +4,44 @@

## Overview

This repository contains the necessary building blocks for OpenGL wrapper
libraries. For more information on each crate, see their respective READMEs
listed below.

The following crates are contained in this repository:

### [gl](https://github.com/bjz/gl-rs/tree/master/gl)
### gl

[![Version](https://img.shields.io/crates/v/gl.svg)](https://crates.io/crates/gl) [![License](https://img.shields.io/crates/l/gl.svg)](https://github.com/bjz/gl-rs/blob/master/LICENSE) [![Downloads](https://img.shields.io/crates/d/gl.svg)](https://crates.io/crates/gl)

[README](https://github.com/bjz/gl-rs/tree/master/gl)

An OpenGL function pointer loader for the Rust Programming Language.

```toml
[dependencies]
gl = "0.5.2"
gl = "0.6.0"
```

### [gl_generator](https://github.com/bjz/gl-rs/tree/master/gl_generator)
### gl_generator

[![Version](https://img.shields.io/crates/v/gl_generator.svg)](https://crates.io/crates/gl_generator) [![License](https://img.shields.io/crates/l/gl_generator.svg)](https://github.com/bjz/gl-rs/blob/master/LICENSE) [![Downloads](https://img.shields.io/crates/d/gl_generator.svg)](https://crates.io/crates/gl_generator)

[README](https://github.com/bjz/gl-rs/tree/master/gl_generator)

Code generators for creating bindings to the Khronos OpenGL APIs.

```toml
[build-dependencies]
gl_generator = "0.4.2"
gl_generator = "0.5.0"
```

### [khronos_api](https://github.com/bjz/gl-rs/tree/master/khronos_api)
### khronos_api

[![Version](https://img.shields.io/crates/v/khronos_api.svg)](https://crates.io/crates/khronos_api) [![License](https://img.shields.io/crates/l/khronos_api.svg)](https://github.com/bjz/gl-rs/blob/master/LICENSE) [![Downloads](https://img.shields.io/crates/d/khronos_api.svg)](https://crates.io/crates/khronos_api)

[README](https://github.com/bjz/gl-rs/tree/master/khronos_api)

The Khronos XML API Registry, exposed as byte string constants.

```toml
Expand Down
4 changes: 2 additions & 2 deletions gl/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "gl"
version = "0.5.2"
version = "0.6.0"
authors = ["Brendan Zabarauskas <bjzaba@yahoo.com.au>",
"Corey Richardson",
"Arseny Kapoulkine"
Expand All @@ -14,7 +14,7 @@ repository = "https://github.com/bjz/gl-rs/"
readme = "README.md"

[build-dependencies]
gl_generator = { version = "0.4.2", path = "../gl_generator" }
gl_generator = { version = "0.5.0", path = "../gl_generator" }

[dev-dependencies]
glutin = "0.4"
6 changes: 5 additions & 1 deletion gl/README.md
Expand Up @@ -8,7 +8,7 @@ An OpenGL function pointer loader for the Rust Programming Language.

```toml
[dependencies]
gl = "0.5.2"
gl = "0.6.0"
```

## Basic usage
Expand Down Expand Up @@ -65,6 +65,10 @@ if gl::Viewport::is_loaded() {

## Changelog

### v0.6.0

- Upgrade to `gl_generator` v0.5.0

### v0.5.2

- Update crate metadata
Expand Down
6 changes: 3 additions & 3 deletions gl_generator/Cargo.toml
@@ -1,7 +1,7 @@
[package]

name = "gl_generator"
version = "0.4.2"
version = "0.5.0"
authors = ["Brendan Zabarauskas <bjzaba@yahoo.com.au>",
"Corey Richardson",
"Arseny Kapoulkine"
Expand All @@ -22,5 +22,5 @@ unstable_generator_utils = []

[dependencies]
khronos_api = { version = "1.0.0", path = "../khronos_api" }
log = "0.3.2"
xml-rs = "0.2.2"
log = "0.3.5"
xml-rs = "0.3.0"
4 changes: 2 additions & 2 deletions gl_generator/README.md
Expand Up @@ -19,7 +19,7 @@ Add this to your `Cargo.toml`:

```toml
[build-dependencies]
gl_generator = "0.4.2"
gl_generator = "0.5.0"
```

Under the `[package]` section, add:
Expand Down Expand Up @@ -129,7 +129,7 @@ also attempt to load `glGenFramebuffersEXT` as a fallback.

## Changelog

### vX.X.X
### v0.5.0

- Rename `Ns` to `API`, and expose at the top level
- Remove the need for clients to depend on the `khronos_api` crate by
Expand Down

0 comments on commit 99dfd89

Please sign in to comment.