Skip to content

Commit 27942f6

Browse files
committed
prepare to release 1.0.0
1 parent c4feee1 commit 27942f6

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

.travis.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
sudo: false
22
language: ruby
33
rvm:
4+
- 2.3.5
5+
- 2.4.2
46
- ruby-head
57
before_install: gem install bundler

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Zlib
22

3+
[![Build Status](https://travis-ci.org/ruby/zlib.svg?branch=master)](https://travis-ci.org/ruby/zlib)
4+
35
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.
46

57
The zlib compression library provides in-memory compression and decompression functions, including integrity checks of the uncompressed data.

zlib.gemspec

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
# frozen_string_literal: true
33
Gem::Specification.new do |spec|
44
spec.name = "zlib"
5-
spec.version = "0.1.0"
6-
spec.date = '2017-09-13'
5+
spec.version = "1.0.0"
6+
spec.date = '2017-12-11'
77
spec.authors = ["Yukihiro Matsumoto", "UENO Katsuhiro"]
88
spec.email = ["matz@ruby-lang.org", nil]
99

@@ -17,7 +17,7 @@ Gem::Specification.new do |spec|
1717
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
1818
spec.require_paths = ["lib"]
1919
spec.extensions = "ext/zlib/extconf.rb"
20-
spec.required_ruby_version = ">= 2.5.0dev"
20+
spec.required_ruby_version = ">= 2.3.0"
2121

2222
spec.add_development_dependency "bundler"
2323
spec.add_development_dependency "rake"

0 commit comments

Comments
 (0)