From 27942f664ef8da71f556f3e515746949896a311a Mon Sep 17 00:00:00 2001 From: SHIBATA Hiroshi Date: Mon, 11 Dec 2017 16:49:29 +0900 Subject: [PATCH] prepare to release 1.0.0 --- .travis.yml | 2 ++ README.md | 2 ++ zlib.gemspec | 6 +++--- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index bc9b033..86413be 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,5 +1,7 @@ sudo: false language: ruby rvm: + - 2.3.5 + - 2.4.2 - ruby-head before_install: gem install bundler diff --git a/README.md b/README.md index b88470a..da2fd81 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,7 @@ # Zlib +[![Build Status](https://travis-ci.org/ruby/zlib.svg?branch=master)](https://travis-ci.org/ruby/zlib) + This module provides access to the {zlib library}[http://zlib.net]. Zlib is designed to be a portable, free, general-purpose, legally unencumbered -- that is, not covered by any patents -- lossless data-compression library for use on virtually any computer hardware and operating system. The zlib compression library provides in-memory compression and decompression functions, including integrity checks of the uncompressed data. diff --git a/zlib.gemspec b/zlib.gemspec index a0ac8fa..bdb32f0 100644 --- a/zlib.gemspec +++ b/zlib.gemspec @@ -2,8 +2,8 @@ # frozen_string_literal: true Gem::Specification.new do |spec| spec.name = "zlib" - spec.version = "0.1.0" - spec.date = '2017-09-13' + spec.version = "1.0.0" + spec.date = '2017-12-11' spec.authors = ["Yukihiro Matsumoto", "UENO Katsuhiro"] spec.email = ["matz@ruby-lang.org", nil] @@ -17,7 +17,7 @@ Gem::Specification.new do |spec| spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ["lib"] spec.extensions = "ext/zlib/extconf.rb" - spec.required_ruby_version = ">= 2.5.0dev" + spec.required_ruby_version = ">= 2.3.0" spec.add_development_dependency "bundler" spec.add_development_dependency "rake"