From b5ef91cba412fd4d067319fadbdb117a618e7dfd Mon Sep 17 00:00:00 2001 From: Gabe Mendoza Date: Mon, 20 May 2024 15:31:10 -0500 Subject: [PATCH 1/3] trying to change name back to authority --- civis-authority.gemspec => authority.gemspec | 2 +- docker-compose.yml | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) rename civis-authority.gemspec => authority.gemspec (96%) diff --git a/civis-authority.gemspec b/authority.gemspec similarity index 96% rename from civis-authority.gemspec rename to authority.gemspec index d470bfa..f55645a 100644 --- a/civis-authority.gemspec +++ b/authority.gemspec @@ -22,7 +22,7 @@ Gem::Specification.new do |spec| spec.files = `git ls-files`.split("\n") spec.files -= spec.files.select { |f| f.match(%r{^(bin|spec|features|gemfiles)/}) } spec.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") - spec.name = 'civis-authority' + spec.name = 'authority' spec.require_paths = ['lib'] spec.version = Authority::VERSION end diff --git a/docker-compose.yml b/docker-compose.yml index f5e3fde..c691d86 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -18,5 +18,6 @@ services: - "3009:3000" volumes: - .:/src + - ~/.gem:/root/.gem command: tail -f /dev/null From 4c593bbcf2cfb85ccce7dc424e582eabe2a920a5 Mon Sep 17 00:00:00 2001 From: Gabe Mendoza Date: Tue, 21 May 2024 12:17:16 -0500 Subject: [PATCH 2/3] bump patch version --- CHANGELOG.markdown | 4 ++++ lib/authority/version.rb | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.markdown b/CHANGELOG.markdown index 446fd51..7cab384 100644 --- a/CHANGELOG.markdown +++ b/CHANGELOG.markdown @@ -2,6 +2,10 @@ Authority does its best to use [semantic versioning](http://semver.org). +## 4.0.1 + +- change references to civis-authority back to authority + ## 4.0.0 - Drops support for Ruby 1.X diff --git a/lib/authority/version.rb b/lib/authority/version.rb index bdd2a04..0ed9a93 100644 --- a/lib/authority/version.rb +++ b/lib/authority/version.rb @@ -1,3 +1,3 @@ module Authority - VERSION = "4.0.0" + VERSION = "4.0.1" end From 1d28dc08e3ae39b73d357da28df236f1c35dd4f2 Mon Sep 17 00:00:00 2001 From: Gabe Mendoza Date: Tue, 21 May 2024 12:19:41 -0500 Subject: [PATCH 3/3] remove extraneous docker-compose change --- docker-compose.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/docker-compose.yml b/docker-compose.yml index c691d86..f5e3fde 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -18,6 +18,5 @@ services: - "3009:3000" volumes: - .:/src - - ~/.gem:/root/.gem command: tail -f /dev/null