Skip to content

Commit

Permalink
fix failing test
Browse files Browse the repository at this point in the history
  • Loading branch information
loteresa2 committed Aug 23, 2023
1 parent ad1c9b8 commit dff0d8d
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## 5.2.6 - 2023-08-23
### Added
- Updated dependencies - CVE

## 5.2.4 - 2023-07-26
### Added
- chore: add changelog link to gemspec
Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
pheme (5.2.5)
pheme (5.2.6)
activesupport (>= 4)
aws-sdk-sns (~> 1.1)
aws-sdk-sqs (~> 1.3)
Expand Down
2 changes: 1 addition & 1 deletion lib/pheme/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Pheme
VERSION = '5.2.5'.freeze
VERSION = '5.2.6'.freeze
end
1 change: 1 addition & 0 deletions spec/version_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ def parse_version(string)
skip('already on main branch, no need to compare versions') if is_main_branch

head_version = get_version(git, 'HEAD')
puts "head_version " + head_version
raise 'no version.rb file found on the current branch' if head_version.nil?

expect(Gem::Version.new(head_version)).to be > Gem::Version.new(main_version)
Expand Down

0 comments on commit dff0d8d

Please sign in to comment.