Skip to content
This repository has been archived by the owner on Jan 19, 2021. It is now read-only.

Commit

Permalink
Publish v0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
BMeu committed May 28, 2017
1 parent c0ef869 commit 38cea20
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 7 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Changelog

This project follows semantic versioning.

Possible log types:

* `[added]` for new features.
* `[changed]` for changes in existing functionality.
* `[deprecated]` for once-stable features removed in upcoming releases.
* `[removed]` for deprecated features removed in this release.
* `[fixed]` for any bug fixes.
* `[security]` to invite users to upgrade in case of vulnerabilities.

## v0.1.0 (2017-05-27)

* Initial release
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,20 +1,21 @@
[package]
name = "mief"
version = "0.0.0"
version = "0.1.0"
authors = ["BMeu <bastian@bastianmeyer.eu>"]

categories = ["games"]
keywords = ["pong", "clone"]
description = "Mief is a Pong clone written in Rust."

# Meta information.
documentation = "https://docs.rs/mief/"
documentation = "https://bmeu.github.io/Mief"
license = "MIT/Apache-2.0"
readme = "README.md"
repository = "https://github.com/BMeu/Mief"

# Exclude development files when publishing.
exclude = [
"docs/*",
"resources/*",
".appveyor.yml",
".gitignore",
Expand Down
11 changes: 7 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,14 @@
[![Build Status on Travis](https://travis-ci.org/BMeu/Mief.svg?branch=master)](https://travis-ci.org/BMeu/Mief)
[![Build Status on AppVeyor](https://ci.appveyor.com/api/projects/status/xxukbycd0en6kvr8?svg=true)](https://ci.appveyor.com/project/BMeu/mief)
[![Codecov](https://codecov.io/gh/BMeu/Mief/branch/master/graph/badge.svg)](https://codecov.io/gh/BMeu/Mief)
[![License](https://img.shields.io/github/license/BMeu/Mief.svg)](README.md)
[![License](https://img.shields.io/crates/l/mief.svg)](README.md)
[![crates.io](https://img.shields.io/crates/v/mief.svg)](https://crates.io/crates/fine_grained)
[![Documentation](https://docs.rs/mief/badge.svg)](https://bmeu.github.io/Mief)
[![Crates.io](https://img.shields.io/crates/d/mief.svg)](https://crates.io/crates/fine_grained)

_Mief_ is a [_Pong_](https://en.wikipedia.org/wiki/Pong) clone written in [_Rust_](https://www.rust-lang.org/en-US/).

**WORK IN PROGRESS**
**WORK IN PROGRESS:** Please report any issues and wishes on [GitHub](https://github.com/BMeu/Mief/issues).

## Usage

Expand All @@ -16,8 +19,8 @@ _Mief_ is a [_Pong_](https://en.wikipedia.org/wiki/Pong) clone written in [_Rust
2. Download _Mief_: `git clone https://github.com/BMeu/Mief.git; cd Mief`
2. Run _Mief_: `cargo run --release`

If you want to display the current frames per second (FPS), instead (compile and) run _Mief_ with the `display-fps`
feature: `cargo run --release --features display-fps`.
If you want to display the current frames per second (FPS), you will have to (compile and) run _Mief_ with the
`display-fps` feature: `cargo run --release --features display-fps` instead.

## Instructions

Expand Down

0 comments on commit 38cea20

Please sign in to comment.