Skip to content

Commit 02c1756

Browse files
committed
Version 0.6.0
1 parent 49222dc commit 02c1756

15 files changed

+27
-21
lines changed

CHANGELOG.md

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,22 @@ The format is based on [Keep a Changelog] and this project adheres to [Semantic
88
[Semantic Versioning]: http://semver.org/spec/v2.0.0.html
99

1010
## [Unreleased]
11+
12+
[Unreleased]: https://github.com/sj26/rspec_junit_formatter/compare/v0.6.0...main
13+
14+
## [v0.6.0]
1115
### Changed
1216
- Restrict to Ruby 2.3+
17+
### Fixed
18+
- Fix handling of nil durations
1319

14-
[Unreleased]: https://github.com/sj26/rspec_junit_formatter/compare/v0.5.1...main
20+
[v0.6.0]: https://github.com/sj26/rspec_junit_formatter/compare/v0.5.1...v0.6.0
1521

1622
## [v0.5.1] - 2022-01-06
1723
### Fixed
1824
- Fixed compatibility with older rubies
1925

20-
[0.5.1]: https://github.com/sj26/rspec_junit_formatter/compare/v0.5.0...v0.5.1
26+
[v0.5.1]: https://github.com/sj26/rspec_junit_formatter/compare/v0.5.0...v0.5.1
2127

2228
## [v0.5.0] - 2022-01-04
2329
### Added
@@ -26,19 +32,19 @@ The format is based on [Keep a Changelog] and this project adheres to [Semantic
2632
- Moved to GitHub Actions for CI
2733
- Test on current Ruby and RSpec versions
2834

29-
[0.5.0]: https://github.com/sj26/rspec_junit_formatter/compare/v0.4.1...v0.5.0
35+
[v0.5.0]: https://github.com/sj26/rspec_junit_formatter/compare/v0.4.1...v0.5.0
3036

31-
## [0.4.1] - 2018-05-26
37+
## [v0.4.1] - 2018-05-26
3238
### Fixed
3339
- Diff ANSI stripping now works for codes with multiple tags, too
3440

35-
[0.4.1]: https://github.com/sj26/rspec_junit_formatter/compare/v0.4.0...v0.4.1
41+
[v0.4.1]: https://github.com/sj26/rspec_junit_formatter/compare/v0.4.0...v0.4.1
3642

37-
## [0.4.0] - 2018-05-26
43+
## [v0.4.0] - 2018-05-26
3844
### Added
3945
- Add support for including STDOUT and STDERR from tests in the JUnit output (see ["Capturing output"] in the readme for details)
4046
### Fixed
4147
- When RSpec includes a diff in its output, strip out ANSI escape codes used to color it for shell display
4248

43-
[0.4.0]: https://github.com/sj26/rspec_junit_formatter/compare/v0.3.0...v0.4.0
49+
[v0.4.0]: https://github.com/sj26/rspec_junit_formatter/compare/v0.3.0...v0.4.0
4450
["Capturing output"]: https://github.com/sj26/rspec_junit_formatter#capturing-output

Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
rspec_junit_formatter (0.5.1)
4+
rspec_junit_formatter (0.6.0)
55
rspec-core (>= 2, < 4, != 2.12.0)
66

77
GEM

gemfiles/rspec_2_x.gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: ..
33
specs:
4-
rspec_junit_formatter (0.5.1)
4+
rspec_junit_formatter (0.6.0)
55
rspec-core (>= 2, < 4, != 2.12.0)
66

77
GEM

gemfiles/rspec_3_0.gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: ..
33
specs:
4-
rspec_junit_formatter (0.5.1)
4+
rspec_junit_formatter (0.6.0)
55
rspec-core (>= 2, < 4, != 2.12.0)
66

77
GEM

gemfiles/rspec_3_1.gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: ..
33
specs:
4-
rspec_junit_formatter (0.5.1)
4+
rspec_junit_formatter (0.6.0)
55
rspec-core (>= 2, < 4, != 2.12.0)
66

77
GEM

gemfiles/rspec_3_10.gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: ..
33
specs:
4-
rspec_junit_formatter (0.5.1)
4+
rspec_junit_formatter (0.6.0)
55
rspec-core (>= 2, < 4, != 2.12.0)
66

77
GEM

gemfiles/rspec_3_2.gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: ..
33
specs:
4-
rspec_junit_formatter (0.5.1)
4+
rspec_junit_formatter (0.6.0)
55
rspec-core (>= 2, < 4, != 2.12.0)
66

77
GEM

gemfiles/rspec_3_3.gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: ..
33
specs:
4-
rspec_junit_formatter (0.5.1)
4+
rspec_junit_formatter (0.6.0)
55
rspec-core (>= 2, < 4, != 2.12.0)
66

77
GEM

gemfiles/rspec_3_4.gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: ..
33
specs:
4-
rspec_junit_formatter (0.5.1)
4+
rspec_junit_formatter (0.6.0)
55
rspec-core (>= 2, < 4, != 2.12.0)
66

77
GEM

gemfiles/rspec_3_5.gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: ..
33
specs:
4-
rspec_junit_formatter (0.5.1)
4+
rspec_junit_formatter (0.6.0)
55
rspec-core (>= 2, < 4, != 2.12.0)
66

77
GEM

gemfiles/rspec_3_6.gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: ..
33
specs:
4-
rspec_junit_formatter (0.5.1)
4+
rspec_junit_formatter (0.6.0)
55
rspec-core (>= 2, < 4, != 2.12.0)
66

77
GEM

gemfiles/rspec_3_7.gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: ..
33
specs:
4-
rspec_junit_formatter (0.5.1)
4+
rspec_junit_formatter (0.6.0)
55
rspec-core (>= 2, < 4, != 2.12.0)
66

77
GEM

gemfiles/rspec_3_8.gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: ..
33
specs:
4-
rspec_junit_formatter (0.5.1)
4+
rspec_junit_formatter (0.6.0)
55
rspec-core (>= 2, < 4, != 2.12.0)
66

77
GEM

gemfiles/rspec_3_9.gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: ..
33
specs:
4-
rspec_junit_formatter (0.5.1)
4+
rspec_junit_formatter (0.6.0)
55
rspec-core (>= 2, < 4, != 2.12.0)
66

77
GEM

rspec_junit_formatter.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Gem::Specification.new do |s|
22
s.name = "rspec_junit_formatter"
3-
s.version = "0.5.1"
3+
s.version = "0.6.0"
44
s.platform = Gem::Platform::RUBY
55
s.author = "Samuel Cochran"
66
s.email = "sj26@sj26.com"

0 commit comments

Comments
 (0)