summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAbinoam P. Marques Jr <abinoam@gmail.com>2023-04-27 12:20:32 -0300
committerGitHub <noreply@github.com>2023-04-27 12:20:32 -0300
commita70c7cd9a45d1e3bba4d43021139581f2412dd99 (patch)
tree9824365b33f83029ad1538323742098adeec8ad4
parent51773ff795eea1683a8f210df056a974a8e51211 (diff)
parentd2e29c00e51e90273ad09857958c5ec06693cf9d (diff)
downloadhighline-a70c7cd9a45d1e3bba4d43021139581f2412dd99.tar.gz
Merge pull request #263 from JEG2/release_3_0_0_pre_1HEADv3.0.0.pre.1master
Release 3.0.0.pre.1
-rw-r--r--.github/workflows/ci.yml5
-rw-r--r--Changelog.md15
-rw-r--r--highline.gemspec2
-rw-r--r--lib/highline/version.rb2
4 files changed, 12 insertions, 12 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 0553039..4ed10df 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -13,11 +13,6 @@ jobs:
- '3.2'
- '3.1'
- '3.0'
- - '2.7'
- - '2.6'
- - '2.5'
- - '2.4'
- - '2.3'
- jruby
- jruby-head
- truffleruby
diff --git a/Changelog.md b/Changelog.md
index cafba85..7df8e70 100644
--- a/Changelog.md
+++ b/Changelog.md
@@ -2,13 +2,18 @@
Below is a complete listing of changes for each revision of HighLine.
-### Unreleased 2.2.0.develop.1
-* PR #258 / I #246 - Add validation class support
+### 3.0.0.pre.1 / 2023-04-27
+* PR #263 - Release 3.0.0.pre.1
+ * Raise minimum Ruby version requirement to 3.0
+* PR #262 - Do not call stty on non-tty (@kbrock)
+* PR #260 / I #43 - Ctrl-U (erase line) handling (@abinoam, issue by @gutenye)
+* PR #259 / I #236 - Handle Ctrl-C when Question#echo = false (@abinoam, @Fahhetah, issue by @aspyct)
+* PR #258 / I #246 - Add validation class support (@abinoam, issue by @Joshfindit)
* Make it dry-types compatible through the use of `#valid?`
- * Solve the multiple answers in one line problem with a combination of
- custom coercion (parser) and custom validation
-* PR #257 / I #233 - Show Question#default hint for non String values (@abinoam)
+ * Solve the multiple answers in one line problem with a combination of custom coercion (parser) and custom validation
+* PR #257 / I #233 - Show Question#default hint for non String values (@abinoam, issue by @branch14)
* Add Question#default_hint_show to allow disabling it.
+* PR #256 / I #249 - Fix Array validation in Question#in (@abinoam, issue by @esotericpig)
### 2.1.0 / 2022-12-31
* PR #255 - Change minimum Ruby version requirement to 2.3 (@abinoam)
diff --git a/highline.gemspec b/highline.gemspec
index e19f557..b463d69 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 = ">= 2.3"
+ spec.required_ruby_version = ">= 3.0"
spec.add_development_dependency "bundler"
spec.add_development_dependency "rake"
diff --git a/lib/highline/version.rb b/lib/highline/version.rb
index 6237a5a..83de267 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.1.0".freeze
+ VERSION = "3.0.0.pre.1".freeze
end