Skip to content

Commit

Permalink
Merge pull request #434 from zilverline/fix-sequent-cli
Browse files Browse the repository at this point in the history
Fix sequent CLI
  • Loading branch information
erikrozendaal authored Dec 13, 2024
2 parents d2e0c88 + eca4786 commit eda4637
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 6 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# Changelog 8.0.1 (changes since 8.0.0)

- Fix Sequent CLI

# Changelog 8.0.0 (changes since 7.2.0)

- Sequent now requires at least Ruby 3.2, ActiveRecord 7.1, and
Expand Down
4 changes: 2 additions & 2 deletions bin/sequent
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@

require 'gli'
require 'tty-prompt'
require './lib/version'
require './lib/sequent/cli/app'
require_relative '../lib/version'
require_relative '../lib/sequent/cli/app'

exit_code = Sequent::Cli::App.run(ARGV)
exit(exit_code)
2 changes: 1 addition & 1 deletion gemfiles/ar_7_1.gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: ..
specs:
sequent (8.0.0)
sequent (8.0.1)
activemodel (>= 7.1.3)
activerecord (>= 7.1.3)
bcrypt (~> 3.1)
Expand Down
2 changes: 1 addition & 1 deletion gemfiles/ar_7_2.gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: ..
specs:
sequent (8.0.0)
sequent (8.0.1)
activemodel (>= 7.1.3)
activerecord (>= 7.1.3)
bcrypt (~> 3.1)
Expand Down
2 changes: 1 addition & 1 deletion lib/sequent/cli/app.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# frozen_string_literal: true

require_relative '../generator'
require_relative 'sequent8_migration'
require_relative 'sequent_8_migration'
module Sequent
module Cli
class App
Expand Down
2 changes: 1 addition & 1 deletion lib/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module Sequent
VERSION = '8.0.0'
VERSION = '8.0.1'
end

0 comments on commit eda4637

Please sign in to comment.