diff --git a/.circleci/scripts/release.sh b/.circleci/scripts/release.sh index 278bd78..05b6665 100755 --- a/.circleci/scripts/release.sh +++ b/.circleci/scripts/release.sh @@ -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 diff --git a/CHANGELOG.md b/CHANGELOG.md index c049780..c050f3b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/lib/dns_mock/version.rb b/lib/dns_mock/version.rb index 27848f9..907846f 100644 --- a/lib/dns_mock/version.rb +++ b/lib/dns_mock/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module DnsMock - VERSION = '1.5.9' + VERSION = '1.5.10' end