Skip to content

Commit 1cc1338

Browse files
committed
Bump to 0.2
1 parent 86a6dc2 commit 1cc1338

File tree

9 files changed

+17
-10
lines changed

9 files changed

+17
-10
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,15 @@
11
## [Unreleased]
22

3+
## [0.2.0] - 2022-02-10
4+
5+
- Change config format from 0.1 to 0.2
6+
- CLI description
7+
- Other errors fix
8+
39
## [0.1.1] - 2022-02-09
410

511
- Fix a execution report issue
12+
613
## [0.1.0] - 2022-02-09
714

815
- Initial release

lib/matrixeval/ruby/templates/matrixeval.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: 0.1
1+
version: 0.2
22
target: ruby
33
parallel_workers: number_of_processors
44
# commands:

lib/matrixeval/ruby/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22

33
module Matrixeval
44
module Ruby
5-
VERSION = "0.1.1"
5+
VERSION = "0.2.0"
66
end
77
end

test/matrixeval/ruby/command_line/parse_context_arguments_test.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ class Matrixeval::Ruby::CommandLine::ParseContextArgumentsTest < MatrixevalTest
66

77
def setup
88
Matrixeval::Ruby::Config::YAML.stubs(:yaml).returns({
9-
"version" => "0.1",
9+
"version" => "0.2",
1010
"target" => "ruby",
1111
"matrix" => {
1212
"ruby" => {

test/matrixeval/ruby/config/yaml_test.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ def test_not_delete_exising_dot_matrixeval_yaml
2929

3030
def test_square_brackets
3131
yaml_content = {
32-
"version" => "0.1",
32+
"version" => "0.2",
3333
"target" => "ruby",
3434
"matrix" => {
3535
"ruby" => {
@@ -47,7 +47,7 @@ def test_square_brackets
4747
}
4848
}
4949
Matrixeval::Ruby::Config::YAML.stubs(:yaml).returns(yaml_content)
50-
assert_equal "0.1", Matrixeval::Ruby::Config::YAML["version"]
50+
assert_equal "0.2", Matrixeval::Ruby::Config::YAML["version"]
5151
assert_equal "ruby", Matrixeval::Ruby::Config::YAML["target"]
5252
assert_equal "3.0", Matrixeval::Ruby::Config::YAML["matrix"]["ruby"]["variants"][0]["key"]
5353
assert_equal "3.1", Matrixeval::Ruby::Config::YAML["matrix"]["ruby"]["variants"][1]["key"]

test/matrixeval/ruby/config_test.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ class Matrixeval::Ruby::ConfigTest < MatrixevalTest
66

77
def setup
88
Matrixeval::Ruby::Config::YAML.stubs(:yaml).returns({
9-
"version" => "0.1",
9+
"version" => "0.2",
1010
"target" => "ruby",
1111
"matrix" => {
1212
"ruby" => {
@@ -30,7 +30,7 @@ def setup
3030
end
3131

3232
def test_version
33-
assert_equal "0.1", Matrixeval::Ruby::Config.version
33+
assert_equal "0.2", Matrixeval::Ruby::Config.version
3434
end
3535

3636
def test_target

test/matrixeval/ruby/context/find_by_command_options_test.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ class Matrixeval::Ruby::Context::FindByCommandOptionsTest < MatrixevalTest
66

77
def setup
88
Matrixeval::Ruby::Config::YAML.stubs(:yaml).returns({
9-
"version" => "0.1",
9+
"version" => "0.2",
1010
"target" => "ruby",
1111
"matrix" => {
1212
"ruby" => {

test/matrixeval/ruby/docker_compose/yaml_test.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ def test_create
1313
refute File.exist?(dummy_gem_docker_compose_file_path)
1414

1515
Matrixeval::Ruby::Config::YAML.stubs(:yaml).returns({
16-
"version" => "0.1",
16+
"version" => "0.2",
1717
"target" => "ruby",
1818
"matrix" => {
1919
"ruby" => {

test/matrixeval/ruby/gemfile_locks_test.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ def setup
1111

1212
def test_create
1313
Matrixeval::Ruby::Config::YAML.stubs(:yaml).returns({
14-
"version" => "0.1",
14+
"version" => "0.2",
1515
"target" => "ruby",
1616
"matrix" => {
1717
"ruby" => {

0 commit comments

Comments
 (0)