From dbbcdd752a79e97a69177c34564fa973e7c3303f Mon Sep 17 00:00:00 2001 From: Jeremy Bopp Date: Sun, 28 Jan 2018 18:02:38 -0600 Subject: [PATCH] Release v0.11.0 --- LICENSE | 2 +- NEWS.md | 6 ++++++ README.md | 2 +- archive-zip.gemspec | 2 +- lib/archive/zip/version.rb | 2 +- 5 files changed, 10 insertions(+), 4 deletions(-) diff --git a/LICENSE b/LICENSE index 1adfdd5..cb4e9a8 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ (The MIT License) -Copyright (c) 2016 Jeremy Bopp +Copyright (c) 2018 Jeremy Bopp Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the diff --git a/NEWS.md b/NEWS.md index e49269e..e855e04 100644 --- a/NEWS.md +++ b/NEWS.md @@ -6,6 +6,12 @@ detailed information is available in the rest of the documentation. **NOTE:** Date stamps in the following entries are in YYYY/MM/DD format. +## v0.11.0 (2018/01/28) + +### Fixes + +* Upgrade gems required for development. + ## v0.10.0 (2017/09/04) ### Fixes diff --git a/README.md b/README.md index be0b7c6..3c9755d 100644 --- a/README.md +++ b/README.md @@ -229,7 +229,7 @@ be more easily accepted if they are consistent with the rest of the code. ``` (The MIT License) -Copyright (c) 2016 Jeremy Bopp +Copyright (c) 2018 Jeremy Bopp Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the diff --git a/archive-zip.gemspec b/archive-zip.gemspec index 72136ad..56460a5 100644 --- a/archive-zip.gemspec +++ b/archive-zip.gemspec @@ -2,7 +2,7 @@ Gem::Specification.new do |s| s.name = 'archive-zip' - s.version = '0.10.0' + s.version = '0.11.0' s.licenses = ['MIT'] s.platform = Gem::Platform::RUBY s.authors = ['Jeremy Bopp', 'Akira Matsuda', 'Tatsuya Sato'] diff --git a/lib/archive/zip/version.rb b/lib/archive/zip/version.rb index 4bdfd8c..c7dc3c8 100644 --- a/lib/archive/zip/version.rb +++ b/lib/archive/zip/version.rb @@ -2,5 +2,5 @@ module Archive; class Zip # The current version of this gem. - VERSION = '0.10.0' + VERSION = '0.11.0' end; end