summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAbinoam P. Marques Jr <abinoam@gmail.com>2022-12-31 20:18:30 -0300
committerGitHub <noreply@github.com>2022-12-31 20:18:30 -0300
commit33cee8a7a7946e27b3be8459721f69c73eee7694 (patch)
treed47e3a324dfb41b9b7be64ca4d7c62d66aa8516b
parent38528f093ea7fc9ed2af25552745c697181201f1 (diff)
parent7e15d98c87d92f39fc0505974c6bf6cd261f555d (diff)
downloadhighline-33cee8a7a7946e27b3be8459721f69c73eee7694.tar.gz
Merge pull request #255 from abinoam/release_2_1_0v2.1.0
Release 2.1.0
-rw-r--r--Changelog.md6
-rw-r--r--README.md3
-rw-r--r--appveyor.yml37
-rw-r--r--highline.gemspec2
-rw-r--r--lib/highline/version.rb2
5 files changed, 9 insertions, 41 deletions
diff --git a/Changelog.md b/Changelog.md
index 6d944c4..fb665c2 100644
--- a/Changelog.md
+++ b/Changelog.md
@@ -2,6 +2,12 @@
Below is a complete listing of changes for each revision of HighLine.
+### 2.1.0 / 2022-12-31
+* PR #255 - Change minimum Ruby version requirement to 2.3 (@abinoam)
+* PR #254 - Improve Github Actions file (@abinoam)
+* PR #253, PR #251 - Setup GitHub Actions and remove Travis (@petergoldstein, rev by @AlexWayfer)
+* PR #250 - Fix file permissions (@bdunne)
+
### 2.0.3 / 2019-10-11
* PR #245 - Suppress `Psych.safe_load` arg warn (@koic)
diff --git a/README.md b/README.md
index a4481a9..740b446 100644
--- a/README.md
+++ b/README.md
@@ -1,8 +1,7 @@
HighLine
========
-[![Build Status](https://travis-ci.org/JEG2/highline.svg?branch=master)](https://travis-ci.org/JEG2/highline)
-[![Build status](https://ci.appveyor.com/api/projects/status/4p05fijpah77d28x/branch/master?svg=true)](https://ci.appveyor.com/project/JEG2/highline/branch/master)
+[![Tests](https://github.com/JEG2/highline/actions/workflows/ci.yml/badge.svg)](https://github.com/JEG2/highline/actions/workflows/ci.yml)
[![Gem Version](https://badge.fury.io/rb/highline.svg)](https://badge.fury.io/rb/highline)
[![Code Climate](https://codeclimate.com/github/JEG2/highline/badges/gpa.svg)](https://codeclimate.com/github/JEG2/highline)
[![Test Coverage](https://codeclimate.com/github/JEG2/highline/badges/coverage.svg)](https://codeclimate.com/github/JEG2/highline/coverage)
diff --git a/appveyor.yml b/appveyor.yml
deleted file mode 100644
index f0441f4..0000000
--- a/appveyor.yml
+++ /dev/null
@@ -1,37 +0,0 @@
-version: 2.0.{build}-{branch}
-
-cache:
- - vendor/bundle
-
-environment:
- matrix:
- - RUBY_VERSION: "193"
- - RUBY_VERSION: "200"
- - RUBY_VERSION: "200-x64"
- - RUBY_VERSION: "21"
- - RUBY_VERSION: "21-x64"
- - RUBY_VERSION: "22"
- - RUBY_VERSION: "22-x64"
- - RUBY_VERSION: "23"
- - RUBY_VERSION: "23-x64"
- - RUBY_VERSION: "24"
- - RUBY_VERSION: "24-x64"
-
-matrix:
- allow_failures:
- - RUBY_VERSION: "193"
-
-install:
- - set PATH=C:\Ruby%RUBY_VERSION%\bin;%PATH%
- - bundle config --local path vendor/bundle
- - bundle install --retry=3 --without code_quality
-
-build: off
-
-before_test:
- - ruby -v
- - gem -v
- - bundle -v
-
-test_script:
- - bundle exec rake
diff --git a/highline.gemspec b/highline.gemspec
index fc8e7f5..1c92ce0 100644
--- a/highline.gemspec
+++ b/highline.gemspec
@@ -27,7 +27,7 @@ DESCRIPTION
spec.extra_rdoc_files = %w[README.md TODO Changelog.md LICENSE]
- spec.required_ruby_version = ">= 1.9.3"
+ spec.required_ruby_version = ">= 2.3"
spec.add_development_dependency "bundler"
spec.add_development_dependency "rake"
diff --git a/lib/highline/version.rb b/lib/highline/version.rb
index f87315b..6237a5a 100644
--- a/lib/highline/version.rb
+++ b/lib/highline/version.rb
@@ -2,5 +2,5 @@
class HighLine
# The version of the installed library.
- VERSION = "2.0.3".freeze
+ VERSION = "2.1.0".freeze
end