summaryrefslogtreecommitdiff
path: root/ext/sdbm
diff options
context:
space:
mode:
authorhsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-12-11 06:48:09 +0000
committerhsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-12-11 06:48:09 +0000
commit5f2083921b223ff6adaf1578da5cf67226cec07b (patch)
treee224fc7b245f6dcebd0e29d4371034dfac5af55d /ext/sdbm
parent4000f70dc2db2bb813f04373363c2ea869d2bb3f (diff)
Bump version to sdbm-1.0.0 as default gems.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@61113 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/sdbm')
-rw-r--r--ext/sdbm/sdbm.gemspec7
1 files changed, 4 insertions, 3 deletions
diff --git a/ext/sdbm/sdbm.gemspec b/ext/sdbm/sdbm.gemspec
index 54ff21f1f6..3627d2800b 100644
--- a/ext/sdbm/sdbm.gemspec
+++ b/ext/sdbm/sdbm.gemspec
@@ -1,15 +1,16 @@
# frozen_string_literal: true
+
Gem::Specification.new do |s|
s.name = "sdbm"
- s.version = '0.0.1'
- s.date = '2017-02-28'
+ s.version = '1.0.0'
+ s.date = '2017-12-11'
s.summary = "Provides a simple file-based key-value store with String keys and values."
s.description = "Provides a simple file-based key-value store with String keys and values."
s.require_path = %w{lib}
s.files = %w{ext/sdbm/_sdbm.c ext/sdbm/depend ext/sdbm/extconf.rb ext/sdbm/init.c ext/sdbm/sdbm.h}
s.extensions = ["ext/sdbm/extconf.rb"]
- s.required_ruby_version = ">= 2.5.0dev"
+ s.required_ruby_version = ">= 2.3.0"
s.authors = ["Yukihiro Matsumoto"]
s.email = ["matz@ruby-lang.org"]