From 70d42c26aeb2a24ea1b92ab89a237029c8c590d4 Mon Sep 17 00:00:00 2001 From: Benno Bielmeier Date: Mon, 5 Feb 2024 10:33:03 +0100 Subject: [PATCH] chore: bump version to 0.8.0 bump the version number to 0.8.0 in preparation for new release. --- CHANGELOG.md | 6 ++++++ Gemfile.lock | 2 +- lib/languages/version.rb | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 520f48b..7142a24 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.8.0] - 2024-02-05 + +### Added + +- Support / Tests for Ruby 3.3 (thanks to [@sandbergja](https://github.com/sandbergja)) + ## [0.7.0] - 2023-03-08 ### Added diff --git a/Gemfile.lock b/Gemfile.lock index 3483358..03b8a71 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - human_languages (0.7.0) + human_languages (0.8.0) GEM remote: https://rubygems.org/ diff --git a/lib/languages/version.rb b/lib/languages/version.rb index 4ce6e45..ae1ca2b 100644 --- a/lib/languages/version.rb +++ b/lib/languages/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Languages - VERSION = '0.7.0' + VERSION = '0.8.0' end