Skip to content

Commit

Permalink
Technical/Fix releasing script (#90)
Browse files Browse the repository at this point in the history
  • Loading branch information
bestwebua authored Nov 30, 2022
1 parent a0e7624 commit 6f9afe0
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .circleci/scripts/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ release_to_rubygems() {
echo "Setting RubyGems publisher credentials..."
./.circleci/scripts/set_publisher_credentials.sh
echo "Preparation for release..."
git config --global user.email ${PUBLISHER_EMAIL}
git config --global user.name ${PUBLISHER_NAME}
git config --global user.email "${PUBLISHER_EMAIL}"
git config --global user.name "${PUBLISHER_NAME}"
git stash
git checkout develop
gem install yard gem-ctags
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

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).

## [1.5.10] - 2022-11-30

### Fixed

- Fixed releasing script (publisher git details)

## [1.5.9] - 2022-11-30

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion lib/dns_mock/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module DnsMock
VERSION = '1.5.9'
VERSION = '1.5.10'
end

0 comments on commit 6f9afe0

Please sign in to comment.