diff --git a/CHANGELOG.md b/CHANGELOG.md index 26aa9a4..d06d503 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,10 @@ -## 0.10.0 (January 22, 2016) +## 0.12.0 (May 3, 2020) + +Bugfix: + + - Update info line to join multiple ruby or rubygems requirements by ampersand (rubygems/compact_index#26) + +## 0.11.0 (January 22, 2016) Features: diff --git a/compact_index.gemspec b/compact_index.gemspec index e30af6b..f3d4b97 100644 --- a/compact_index.gemspec +++ b/compact_index.gemspec @@ -8,8 +8,8 @@ require "compact_index/version" Gem::Specification.new do |spec| spec.name = "compact_index" spec.version = CompactIndex::VERSION - spec.authors = ["fotanus@gmail.com"] - spec.email = ["Felipe Tanus"] + spec.authors = ["Felipe Tanus"] + spec.email = ["fotanus@gmail.com"] spec.summary = "Backend for compact index" spec.homepage = "https://github.com/bundler/compact_index" diff --git a/lib/compact_index/version.rb b/lib/compact_index/version.rb index b5e713a..d843281 100644 --- a/lib/compact_index/version.rb +++ b/lib/compact_index/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module CompactIndex - VERSION = "0.11.0".freeze + VERSION = "0.12.0".freeze end