Skip to content

Commit

Permalink
Merge pull request #42 from fac/version-3-0-0
Browse files Browse the repository at this point in the history
Version 3.0.0
  • Loading branch information
gerardm-fa authored Apr 19, 2023
2 parents a4b184a + 8ec952d commit 15588a2
Show file tree
Hide file tree
Showing 12 changed files with 19 additions and 55 deletions.
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.0.3
3.1.4
12 changes: 0 additions & 12 deletions .travis.yml

This file was deleted.

9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [3.0.0] - 2023-04-19
### Removed
- Removed support for Ruby 2.0 - 2.4, minimum supported version is now 2.5
- Removed Travis CI

### Changed
- Changed project Ruby version to 3.1.4
- Updated dependencies to versions supporting a minimum of Ruby 2.5

## [2.7.0] - 2022-05-25
### Fixed
- Added missing require in `Hermod::XmlSectionBuilder`
Expand Down
10 changes: 4 additions & 6 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,8 @@ source 'https://rubygems.org'
gemspec

group :test do
gem "guard", "~> 2.13.0"
gem "guard-minitest", "~> 2.4.4"
gem "pry-byebug", "~> 3.3.0", platform: [:mri_20, :mri_21]
gem "pry-debugger", "~> 0.2.3", platform: :mri_19
gem "pry-doc", "~> 0.8.0"
gem "bond", "~> 0.5.1"
gem "guard", "~> 2.18.0"
gem "guard-minitest", "~> 2.4.6"
gem "pry-byebug", "~> 3.9.0"
gem "pry-doc", "~> 1.4.0"
end
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
[![Gem](https://github.com/fac/hermod/actions/workflows/freeagent-gem.yml/badge.svg)](https://github.com/fac/hermod/actions/workflows/freeagent-gem.yml)
[![Code
Climate](https://codeclimate.com/github/fac/hermod/badges/gpa.svg)](https://codeclimate.com/github/fac/hermod)
[![Build Status](https://travis-ci.org/fac/hermod.svg?branch=master)](https://travis-ci.org/fac/hermod)

This gem makes it easier to talk to HMRC through the [Government Gateway][1] by
providing a DSL you can use to create Ruby classes to build the XML required in
Expand Down
6 changes: 0 additions & 6 deletions gemfiles/activesupport-3.2

This file was deleted.

6 changes: 0 additions & 6 deletions gemfiles/activesupport-4.0

This file was deleted.

6 changes: 0 additions & 6 deletions gemfiles/activesupport-4.2

This file was deleted.

6 changes: 0 additions & 6 deletions gemfiles/activesupport-5.0

This file was deleted.

6 changes: 0 additions & 6 deletions gemfiles/activesupport-6.0

This file was deleted.

8 changes: 4 additions & 4 deletions hermod.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,15 @@ Gem::Specification.new do |spec|
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]

spec.required_ruby_version = ">= 2.0.0"
spec.required_ruby_version = ">= 2.5"

spec.add_runtime_dependency "libxml-ruby", "~> 3.2"
spec.add_runtime_dependency "libxml-ruby", "~> 4.0"
spec.add_runtime_dependency "activesupport", "> 3.2"

spec.add_development_dependency "bundler", "~> 2.0"
spec.add_development_dependency "rake", "13.0.1"
spec.add_development_dependency "rake", "~> 13.0.6"
spec.add_development_dependency "minitest", "~> 5.15"
spec.add_development_dependency "minitest-reporters", ">= 1.0.16", "~> 1.5"
spec.add_development_dependency "minitest-reporters", "~> 1.6"
spec.add_development_dependency "nokogiri", "~> 1.13"

spec.metadata = {
Expand Down
2 changes: 1 addition & 1 deletion lib/hermod/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Hermod
VERSION = "2.7.0"
VERSION = "3.0.0"
end

0 comments on commit 15588a2

Please sign in to comment.