Skip to content

Commit

Permalink
Release 0.4.10 (#331)
Browse files Browse the repository at this point in the history
* bump version

* update changelog

* update changelog
  • Loading branch information
Jammjammjamm authored Mar 3, 2023
1 parent 6dcec4c commit f690d12
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 11 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
# 0.4.10
* Add the `--watch` option to `inferno start` to automatically restart Inferno
when files change.
* Update test sessions routes to look like `/:test_suite_id/:test_session_id`
instead of `/test_sessions/:test_session_id`
* Shorted new test session ids.
* Update UI to show suite options page when a suite has a description.
* Fix a bug where clicking on the request/message icons would not change which
details tab was displayed.
* Fix a bug which prevented the New Session button from starting a new session
when only a single test suite is loaded.
* Fix a bug which caused snackbar notifications to appear above other modals.
* Display a timestamp with request details.
* Update documentation.

# 0.4.9
* Fix a bug which prevented `inferno suite describe` from working.
* Update documentation.
Expand Down
20 changes: 10 additions & 10 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
inferno_core (0.4.9)
inferno_core (0.4.10)
activesupport (~> 6.1)
base62-rb (= 0.3.1)
blueprinter (= 0.25.2)
Expand Down Expand Up @@ -180,7 +180,7 @@ GEM
method_source (1.0.0)
mime-types (3.4.1)
mime-types-data (~> 3.2015)
mime-types-data (3.2022.0105)
mime-types-data (3.2023.0218.1)
minitest (5.17.0)
multi_json (1.15.0)
multi_xml (0.6.0)
Expand All @@ -192,11 +192,11 @@ GEM
mustermann (= 1.1.2)
netrc (0.11.0)
nio4r (2.5.8)
nokogiri (1.14.1-arm64-darwin)
nokogiri (1.14.2-arm64-darwin)
racc (~> 1.4)
nokogiri (1.14.1-x86_64-darwin)
nokogiri (1.14.2-x86_64-darwin)
racc (~> 1.4)
nokogiri (1.14.1-x86_64-linux)
nokogiri (1.14.2-x86_64-linux)
racc (~> 1.4)
oauth2 (1.4.11)
faraday (>= 0.17.3, < 3.0)
Expand Down Expand Up @@ -225,7 +225,7 @@ GEM
rack (>= 1.0, < 3)
rainbow (3.1.1)
rake (13.0.6)
redis (4.8.0)
redis (4.8.1)
regexp_parser (2.2.0)
reline (0.3.2)
io-console (~> 0.5)
Expand Down Expand Up @@ -282,16 +282,16 @@ GEM
simplecov (~> 0.19)
simplecov-html (0.12.3)
simplecov_json_formatter (0.1.3)
sqlite3 (1.6.0-arm64-darwin)
sqlite3 (1.6.0-x86_64-darwin)
sqlite3 (1.6.0-x86_64-linux)
sqlite3 (1.6.1-arm64-darwin)
sqlite3 (1.6.1-x86_64-darwin)
sqlite3 (1.6.1-x86_64-linux)
strings (0.2.1)
strings-ansi (~> 0.2)
unicode-display_width (>= 1.5, < 3.0)
unicode_utils (~> 1.4)
strings-ansi (0.2.0)
thor (1.2.1)
tilt (2.0.11)
tilt (2.1.0)
tty-color (0.6.0)
tty-markdown (0.7.1)
kramdown (>= 1.16.2, < 3.0)
Expand Down
2 changes: 1 addition & 1 deletion lib/inferno/version.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module Inferno
# Standard patterns for gem versions: https://guides.rubygems.org/patterns/
VERSION = '0.4.9'.freeze
VERSION = '0.4.10'.freeze
end

0 comments on commit f690d12

Please sign in to comment.