Skip to content

Commit

Permalink
Tiny doc fixes and such.
Browse files Browse the repository at this point in the history
  • Loading branch information
icefoxen committed Jul 20, 2019
1 parent b9bc765 commit 74c06fd
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 4 deletions.
30 changes: 29 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,31 @@
# 0.5.1

## Added

Nothing

## Changed

* version bumped `image`
* Tiny doc cleanups and futzing around with readme


## Deprecated

Nothing

## Removed

Nothing

## Fixed

Nothing

## Broken

Nothing

# 0.5.0

## Added
Expand Down Expand Up @@ -58,7 +86,7 @@

* Minor things beyond counting. Don't worry, we added plenty of new
bugs too.

## Broken

* Does not work on Windows 7 or below, again due to `gilrs`.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ crates.io. To include it in your project, just add the dependency
line to your `Cargo.toml` file:

```text
ggez = "0.5.0"
ggez = "0.5"
```

ggez consists of three main parts: A `Context` object which
Expand Down
4 changes: 2 additions & 2 deletions docs/guides/HelloGgez.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ version = "0.1.0"
authors = ["Awesome Person [email protected]"]

[dependencies]
ggez = "0.5.0-rc.0"
ggez = "0.5"
```

### ✔ Check Project Setup
Expand Down Expand Up @@ -165,7 +165,7 @@ let (ref mut ctx, ref mut event_loop) = ContextBuilder::new("hello_ggez", "aweso
```

This will create a `Context` with the `game_id` `hello_ggez` and the author `awesome_person`.
It will also create an [`EventsLoop`](https://docs.rs/ggez/0.4.0/event/struct.EventsLoop.html).
It will also create an [`EventsLoop`](https://docs.rs/ggez/0.4.0/event/struct.EventsLoop.html).
We'll need it in a minute to call [`run`](https://docs.rs/ggez/0.4.0/ggez/event/fn.run.html).
Feel free to replace the author with yourself.
You are awesome after all.
Expand Down

0 comments on commit 74c06fd

Please sign in to comment.