Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Changed
- Update version constraint for tty-prompt

## [3.0.0] - 2024-04-19

### Added
Expand Down
2 changes: 1 addition & 1 deletion lib/shaman/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module Shaman
VERSION = '3.0.0'.freeze
VERSION = '3.0.0'
end
2 changes: 1 addition & 1 deletion shaman.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@ Gem::Specification.new do |spec|
spec.add_dependency 'commander', '~> 5.0'
spec.add_dependency 'git', '~> 1.19'
spec.add_dependency 'http', '~> 5.2'
spec.add_dependency 'tty-prompt', '0.12.0'
spec.add_dependency 'tty-prompt', '~> 0.23'
spec.metadata['rubygems_mfa_required'] = 'true'
end
2 changes: 1 addition & 1 deletion spec/spec_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
$LOAD_PATH.unshift File.expand_path('../lib', __dir__)

require 'shaman'
require 'tty/test_prompt'
require 'tty/prompt/test'
require 'pry'

module Shaman
Expand Down
2 changes: 1 addition & 1 deletion spec/support/test_helpers.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ module Shaman
module TestHelpers
module Prompt
def test_prompt
Shaman.prompt = TTY::TestPrompt.new
Shaman.prompt = TTY::Prompt::Test.new
end
end

Expand Down