Skip to content

Commit

Permalink
Bump version numbers of gl_generator and gl crates
Browse files Browse the repository at this point in the history
  • Loading branch information
brendanzab committed Mar 24, 2016
1 parent 29fa78b commit 3d1811e
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 11 deletions.
20 changes: 15 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gl"
version = "0.5.2"
version = "0.6.0"
authors = ["Brendan Zabarauskas <[email protected]>",
"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
Original file line number Diff line number Diff line change
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
2 changes: 1 addition & 1 deletion gl_generator/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]

name = "gl_generator"
version = "0.4.2"
version = "0.5.0"
authors = ["Brendan Zabarauskas <[email protected]>",
"Corey Richardson",
"Arseny Kapoulkine"
Expand Down
4 changes: 2 additions & 2 deletions gl_generator/README.md
Original file line number Diff line number Diff line change
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 3d1811e

Please sign in to comment.