From 1cb4cf8428fd6c557a98692ea109df250af6e013 Mon Sep 17 00:00:00 2001 From: redcode Date: Thu, 4 Jan 2024 22:35:53 -0500 Subject: [PATCH] Bump gem version; v0.3.1 Changes. --- CHANGELOG.md | 8 +++++++- CITATION.cff | 2 +- lib/z80/version.rb | 2 +- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bd6c8f4..c0e5e72 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ This is the version history and changelog of Z80-Ruby. Version numbers do not correlate with those of the Z80 library. Release dates are in UTC time zone. +## 0.3.2 / 2024-01-05 + +### Bugfixes + +* Added `Z80::MINIMUM_CYCLES_PER_STEP` (again). It was not actually added in v0.2.0 by mistake. + ## 0.3.1 / 2024-01-05 ### Bugfixes @@ -25,7 +31,7 @@ This is the version history and changelog of Z80-Ruby. Version numbers do not co ### Enhancements -* Added [`Z80::MINIMUM_CYCLES_PER_STEP`](https://zxe.io/software/Z80/documentation/latest/APIReference.html#c.Z80_MINIMUM_CYCLES_PER_STEP). +* Added `Z80::MINIMUM_CYCLES_PER_STEP`. * Minor code improvements. ### Bugfixes diff --git a/CITATION.cff b/CITATION.cff index 52f2981..63061ef 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -20,5 +20,5 @@ message: If you use this software, please cite it using these metadata. repository-code: https://github.com/redcode/Z80-Ruby title: Z80-Ruby type: software -version: 0.3.1 +version: 0.3.2 url: https://zxe.io/software/Z80-Ruby diff --git a/lib/z80/version.rb b/lib/z80/version.rb index 6ab151f..3c30bc7 100644 --- a/lib/z80/version.rb +++ b/lib/z80/version.rb @@ -1,3 +1,3 @@ class Z80 - VERSION = '0.3.1' + VERSION = '0.3.2' end