Skip to content

Commit 2dfa779

Browse files
committed
release: cut the v1.0.2 release
1 parent 13fd085 commit 2dfa779

File tree

3 files changed

+9
-6
lines changed

3 files changed

+9
-6
lines changed

CHANGELOG.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [1.0.2] - 2020-12-06
11+
1012
### Fixed
1113

1214
- Fix warning `clippy::self_assignment`.
@@ -20,6 +22,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2022

2123
## [1.0.0] - 2020-07-26
2224

23-
[Unreleased]: https://github.com/dkim/i8080/compare/1.0.1...HEAD
25+
[Unreleased]: https://github.com/dkim/i8080/compare/1.0.2...HEAD
26+
[1.0.2]: https://github.com/dkim/i8080/compare/1.0.1...1.0.2
2427
[1.0.1]: https://github.com/dkim/i8080/compare/1.0.0...1.0.1
2528
[1.0.0]: https://github.com/dkim/i8080/releases/tag/1.0.0

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
[package]
22
name = "i8080"
3-
version = "1.0.1"
3+
version = "1.0.2"
44
authors = ["Deokhwan Kim"]
55
description = "i8080 is an Intel 8080 emulation library in Rust."
66
license = "MIT OR Apache-2.0"
77
readme = "README.md"
88
repository = "https://github.com/dkim/i8080"
99
keywords = ["intel-8080"]
1010
categories = ["emulators"]
11-
documentation = "https://dkim.github.io/i8080/1.0.1/i8080"
11+
documentation = "https://dkim.github.io/i8080/1.0.2/i8080"
1212
edition = "2018"
1313

1414
[dependencies]

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# i8080
22

33
[![build status](https://github.com/dkim/i8080/workflows/build/badge.svg)](https://github.com/dkim/i8080/actions?query=workflow%3Abuild+branch%3Amaster)
4-
[![docs](https://img.shields.io/badge/docs-1.0.1-blue.svg)](https://dkim.github.io/i8080/1.0.1/i8080/)
4+
[![docs](https://img.shields.io/badge/docs-1.0.2-blue.svg)](https://dkim.github.io/i8080/1.0.2/i8080/)
55

66
i8080 is an [Intel 8080] emulation library in Rust.
77

@@ -17,15 +17,15 @@ i8080 is an [Intel 8080] emulation library in Rust.
1717

1818
### Rust
1919

20-
This program targets the latest stable version of Rust 1.46.0 or later.
20+
This program targets the latest stable version of Rust 1.47.0 or later.
2121

2222
## Usage
2323

2424
Add this to your `Cargo.toml`:
2525

2626
```toml
2727
[dependencies]
28-
i8080 = { git = "https://github.com/dkim/i8080", tag = "1.0.1" }
28+
i8080 = { git = "https://github.com/dkim/i8080", tag = "1.0.2" }
2929
```
3030

3131
## Example

0 commit comments

Comments
 (0)