Skip to content

Commit

Permalink
Merge pull request #263 from JEG2/release_3_0_0_pre_1
Browse files Browse the repository at this point in the history
Release 3.0.0.pre.1
  • Loading branch information
abinoam committed Apr 27, 2023
2 parents 51773ff + d2e29c0 commit a70c7cd
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
5 changes: 0 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
15 changes: 10 additions & 5 deletions Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion highline.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion lib/highline/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit a70c7cd

Please sign in to comment.