parse_a_changelog 1.3.0 → 1.3.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.codeclimate.yml +162 -0
- data/.github/CODEOWNERS +9 -0
- data/.gitignore +2 -0
- data/.rspec +3 -0
- data/CHANGELOG.md +12 -3
- data/CONTRIBUTING.md +20 -0
- data/Contributing_OSS/CyberArk_Open_Source_Contributor_Agreement.pdf +0 -0
- data/Dockerfile +14 -0
- data/Gemfile +3 -0
- data/Gemfile.lock +51 -0
- data/Jenkinsfile +160 -0
- data/NOTICES.txt +25 -0
- data/README.md +2 -2
- data/Rakefile +10 -0
- data/SECURITY.md +42 -0
- data/build.sh +5 -0
- data/parse_a_changelog.gemspec +26 -0
- data/publish.sh +25 -0
- data/spec/fixtures/correct.md +31 -0
- data/spec/fixtures/correct_empty_diff.md +28 -0
- data/spec/fixtures/correct_empty_unreleased.md +26 -0
- data/spec/fixtures/correct_https.md +31 -0
- data/spec/fixtures/correct_initial_tag.md +32 -0
- data/spec/fixtures/correct_no_semver.md +30 -0
- data/spec/fixtures/correct_with_4_digit_version.md +20 -0
- data/spec/fixtures/correct_with_4_digit_version_and_metadata.md +20 -0
- data/spec/fixtures/correct_with_4_digit_version_and_pre_release.md +52 -0
- data/spec/fixtures/correct_with_metadata.md +20 -0
- data/spec/fixtures/correct_with_pre_release.md +52 -0
- data/spec/fixtures/incorrect_change_prefix.md +31 -0
- data/spec/fixtures/incorrect_release_header_delimiter.md +31 -0
- data/spec/fixtures/malformed_change_header.md +31 -0
- data/spec/fixtures/malformed_changelog_header.md +31 -0
- data/spec/fixtures/malformed_diff_version.md +10 -0
- data/spec/fixtures/malformed_release_date.md +31 -0
- data/spec/fixtures/malformed_release_header.md +31 -0
- data/spec/fixtures/malformed_release_version.md +31 -0
- data/spec/fixtures/malformed_unreleased_header.md +31 -0
- data/spec/fixtures/missing_newline_at_eof.md +31 -0
- data/spec/fixtures/missing_newline_before_diffs.md +30 -0
- data/spec/fixtures/missing_newline_before_releases.md +30 -0
- data/spec/fixtures/missing_newline_before_unreleased.md +30 -0
- data/spec/fixtures/missing_newline_between_changes.md +30 -0
- data/spec/fixtures/missing_release_date.md +31 -0
- data/spec/fixtures/no_releases.md +12 -0
- data/spec/fixtures/unknown_change_type.md +31 -0
- data/spec/parser_spec.rb +163 -0
- data/test.sh +17 -0
- metadata +85 -11
- data/VERSION +0 -1
@@ -0,0 +1,28 @@
|
|
1
|
+
# Changelog
|
2
|
+
All notable changes to this project will be documented in this file.
|
3
|
+
|
4
|
+
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
|
5
|
+
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
|
6
|
+
|
7
|
+
## [Unreleased]
|
8
|
+
### Added
|
9
|
+
- Added a thing.
|
10
|
+
|
11
|
+
### Changed
|
12
|
+
- Changed a thing.
|
13
|
+
|
14
|
+
## [1.0.0] - 2019-01-03
|
15
|
+
### Deprecated
|
16
|
+
- Some things were deprecated.
|
17
|
+
|
18
|
+
## 0.1.0 - 2018-11-28
|
19
|
+
### Removed
|
20
|
+
- Removed all
|
21
|
+
the things.
|
22
|
+
|
23
|
+
### Fixed
|
24
|
+
- Fixed all the bugs from the non-existent previous release.
|
25
|
+
|
26
|
+
### Security
|
27
|
+
- We are so secure now.
|
28
|
+
- The securest.
|
@@ -0,0 +1,26 @@
|
|
1
|
+
# Changelog
|
2
|
+
All notable changes to this project will be documented in this file.
|
3
|
+
|
4
|
+
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
|
5
|
+
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
|
6
|
+
|
7
|
+
## [Unreleased]
|
8
|
+
|
9
|
+
## [1.0.0] - 2019-01-03
|
10
|
+
### Deprecated
|
11
|
+
- Some things were deprecated.
|
12
|
+
|
13
|
+
## 0.1.0 - 2018-11-28
|
14
|
+
### Removed
|
15
|
+
- Removed all
|
16
|
+
the things.
|
17
|
+
|
18
|
+
### Fixed
|
19
|
+
- Fixed all the bugs from the non-existent previous release.
|
20
|
+
|
21
|
+
### Security
|
22
|
+
- We are so secure now.
|
23
|
+
- The securest.
|
24
|
+
|
25
|
+
[Unreleased]: https://github.com/conjurinc/evoke/compare/v1.0.0...HEAD
|
26
|
+
[1.0.0]: https://github.com/conjurinc/evoke/compare/v0.1.0...v1.0.0
|
@@ -0,0 +1,31 @@
|
|
1
|
+
# Changelog
|
2
|
+
All notable changes to this project will be documented in this file.
|
3
|
+
|
4
|
+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
|
5
|
+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
6
|
+
|
7
|
+
## [Unreleased]
|
8
|
+
### Added
|
9
|
+
- Added a thing.
|
10
|
+
|
11
|
+
### Changed
|
12
|
+
- Changed a thing.
|
13
|
+
|
14
|
+
## [1.0.0] - 2019-01-03
|
15
|
+
### Deprecated
|
16
|
+
- Some things were deprecated.
|
17
|
+
|
18
|
+
## 0.1.0 - 2018-11-28
|
19
|
+
### Removed
|
20
|
+
- Removed all
|
21
|
+
the things.
|
22
|
+
|
23
|
+
### Fixed
|
24
|
+
- Fixed all the bugs from the non-existent previous release.
|
25
|
+
|
26
|
+
### Security
|
27
|
+
- We are so secure now.
|
28
|
+
- The securest.
|
29
|
+
|
30
|
+
[Unreleased]: https://github.com/conjurinc/evoke/compare/v1.0.0...HEAD
|
31
|
+
[1.0.0]: https://github.com/conjurinc/evoke/compare/v0.1.0...v1.0.0
|
@@ -0,0 +1,32 @@
|
|
1
|
+
# Changelog
|
2
|
+
All notable changes to this project will be documented in this file.
|
3
|
+
|
4
|
+
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
|
5
|
+
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
|
6
|
+
|
7
|
+
## [Unreleased]
|
8
|
+
### Added
|
9
|
+
- Added a thing.
|
10
|
+
|
11
|
+
### Changed
|
12
|
+
- Changed a thing.
|
13
|
+
|
14
|
+
## [1.0.0] - 2019-01-03
|
15
|
+
### Deprecated
|
16
|
+
- Some things were deprecated.
|
17
|
+
|
18
|
+
## [0.1.0] - 2018-11-28
|
19
|
+
### Removed
|
20
|
+
- Removed all
|
21
|
+
the things.
|
22
|
+
|
23
|
+
### Fixed
|
24
|
+
- Fixed all the bugs from the non-existent previous release.
|
25
|
+
|
26
|
+
### Security
|
27
|
+
- We are so secure now.
|
28
|
+
- The securest.
|
29
|
+
|
30
|
+
[Unreleased]: https://github.com/conjurinc/evoke/compare/v1.0.0...HEAD
|
31
|
+
[1.0.0]: https://github.com/conjurinc/evoke/compare/v0.1.0...v1.0.0
|
32
|
+
[0.1.0]: https://github.com/conjurinc/evoke/releases/tag/v0.1.0
|
@@ -0,0 +1,30 @@
|
|
1
|
+
# Changelog
|
2
|
+
All notable changes to this project will be documented in this file.
|
3
|
+
|
4
|
+
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
|
5
|
+
|
6
|
+
## [Unreleased]
|
7
|
+
### Added
|
8
|
+
- Added a thing.
|
9
|
+
|
10
|
+
### Changed
|
11
|
+
- Changed a thing.
|
12
|
+
|
13
|
+
## [1.0.0] - 2019-01-03
|
14
|
+
### Deprecated
|
15
|
+
- Some things were deprecated.
|
16
|
+
|
17
|
+
## 0.1.0 - 2018-11-28
|
18
|
+
### Removed
|
19
|
+
- Removed all
|
20
|
+
the things.
|
21
|
+
|
22
|
+
### Fixed
|
23
|
+
- Fixed all the bugs from the non-existent previous release.
|
24
|
+
|
25
|
+
### Security
|
26
|
+
- We are so secure now.
|
27
|
+
- The securest.
|
28
|
+
|
29
|
+
[Unreleased]: https://github.com/conjurinc/evoke/compare/v1.0.0...HEAD
|
30
|
+
[1.0.0]: https://github.com/conjurinc/evoke/compare/v0.1.0...v1.0.0
|
@@ -0,0 +1,20 @@
|
|
1
|
+
# Changelog
|
2
|
+
All notable changes to this project will be documented in this file.
|
3
|
+
|
4
|
+
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
|
5
|
+
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
|
6
|
+
|
7
|
+
## Unreleased
|
8
|
+
|
9
|
+
## [1.0.0.1] - 2019-01-03
|
10
|
+
### Deprecated
|
11
|
+
- Some things were deprecated.
|
12
|
+
|
13
|
+
## 0.1.0 - 2018-11-28
|
14
|
+
### Removed
|
15
|
+
- Removed all
|
16
|
+
the things.
|
17
|
+
|
18
|
+
[Unreleased]: https://github.com/conjurinc/evoke/compare/v1.0.0+metadata.1-rc123...HEAD
|
19
|
+
[1.0.0+metadata.1]: https://github.com/conjurinc/evoke/compare/v1.0.0...v1.0.0+metadata.1
|
20
|
+
[1.0.0]: https://github.com/conjurinc/evoke/compare/v0.1.0...v1.0.0
|
@@ -0,0 +1,20 @@
|
|
1
|
+
# Changelog
|
2
|
+
All notable changes to this project will be documented in this file.
|
3
|
+
|
4
|
+
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
|
5
|
+
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
|
6
|
+
|
7
|
+
## Unreleased
|
8
|
+
|
9
|
+
## [1.0.0.1+metadata.1] - 2019-01-03
|
10
|
+
### Deprecated
|
11
|
+
- Some things were deprecated.
|
12
|
+
|
13
|
+
## 0.1.0 - 2018-11-28
|
14
|
+
### Removed
|
15
|
+
- Removed all
|
16
|
+
the things.
|
17
|
+
|
18
|
+
[Unreleased]: https://github.com/conjurinc/evoke/compare/v1.0.0+metadata.1-rc123...HEAD
|
19
|
+
[1.0.0+metadata.1]: https://github.com/conjurinc/evoke/compare/v1.0.0...v1.0.0+metadata.1
|
20
|
+
[1.0.0]: https://github.com/conjurinc/evoke/compare/v0.1.0...v1.0.0
|
@@ -0,0 +1,52 @@
|
|
1
|
+
# Changelog
|
2
|
+
All notable changes to this project will be documented in this file.
|
3
|
+
|
4
|
+
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
|
5
|
+
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
|
6
|
+
|
7
|
+
## Unreleased
|
8
|
+
|
9
|
+
### Fixed
|
10
|
+
- Fixed a thing
|
11
|
+
|
12
|
+
## [2.0.0.1-rc123] - 2020-08-26
|
13
|
+
### Added
|
14
|
+
- Added a thing.
|
15
|
+
|
16
|
+
## [1.0.0.1-alpha] - 2020-08-25
|
17
|
+
### Added
|
18
|
+
- Added a thing.
|
19
|
+
|
20
|
+
## [1.0.0.1-alpha.1] - 2020-08-24
|
21
|
+
### Added
|
22
|
+
- Added a thing.
|
23
|
+
|
24
|
+
## [1.0.0.1-0.3.7] - 2020-08-23
|
25
|
+
### Added
|
26
|
+
- Added a thing.
|
27
|
+
|
28
|
+
## [1.0.0-x.7.z.92] - 2020-08-22
|
29
|
+
### Added
|
30
|
+
- Added a thing.
|
31
|
+
|
32
|
+
## [1.0.0-x-y-z.-] - 2020-08-21
|
33
|
+
### Added
|
34
|
+
- Added a thing.
|
35
|
+
|
36
|
+
## [1.0.0] - 2019-01-03
|
37
|
+
### Deprecated
|
38
|
+
- Some things were deprecated.
|
39
|
+
|
40
|
+
## 0.1.0 - 2018-11-28
|
41
|
+
### Removed
|
42
|
+
- Removed all
|
43
|
+
the things.
|
44
|
+
|
45
|
+
[Unreleased]: https://github.com/conjurinc/evoke/compare/v2.0.0-rc123...HEAD
|
46
|
+
[2.0.0-rc123]: https://github.com/conjurinc/evoke/compare/v1.0.0-alpha...v2.0.0-rc123
|
47
|
+
[1.0.0-alpha]: https://github.com/conjurinc/evoke/compare/v1.0.0-alpha.1...v1.0.0-alpha
|
48
|
+
[1.0.0-alpha.1]: https://github.com/conjurinc/evoke/compare/v1.0.0-0.3.7...v1.0.0-alpha.1
|
49
|
+
[1.0.0-0.3.7]: https://github.com/conjurinc/evoke/compare/v1.0.0-x.7.z.92...v1.0.0-0.3.7
|
50
|
+
[1.0.0-x.7.z.92]: https://github.com/conjurinc/evoke/compare/v1.0.0-x-y-z.-...v1.0.0-x.7.z.92
|
51
|
+
[1.0.0-x-y-z.-]: https://github.com/conjurinc/evoke/compare/v1.0.0...v1.0.0-x-y-z.-
|
52
|
+
[1.0.0]: https://github.com/conjurinc/evoke/compare/v0.1.0...v1.0.0
|
@@ -0,0 +1,20 @@
|
|
1
|
+
# Changelog
|
2
|
+
All notable changes to this project will be documented in this file.
|
3
|
+
|
4
|
+
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
|
5
|
+
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
|
6
|
+
|
7
|
+
## Unreleased
|
8
|
+
|
9
|
+
## [1.0.0+metadata.1] - 2019-01-03
|
10
|
+
### Deprecated
|
11
|
+
- Some things were deprecated.
|
12
|
+
|
13
|
+
## 0.1.0 - 2018-11-28
|
14
|
+
### Removed
|
15
|
+
- Removed all
|
16
|
+
the things.
|
17
|
+
|
18
|
+
[Unreleased]: https://github.com/conjurinc/evoke/compare/v1.0.0+metadata.1-rc123...HEAD
|
19
|
+
[1.0.0+metadata.1]: https://github.com/conjurinc/evoke/compare/v1.0.0...v1.0.0+metadata.1
|
20
|
+
[1.0.0]: https://github.com/conjurinc/evoke/compare/v0.1.0...v1.0.0
|
@@ -0,0 +1,52 @@
|
|
1
|
+
# Changelog
|
2
|
+
All notable changes to this project will be documented in this file.
|
3
|
+
|
4
|
+
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
|
5
|
+
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
|
6
|
+
|
7
|
+
## Unreleased
|
8
|
+
|
9
|
+
### Fixed
|
10
|
+
- Fixed a thing
|
11
|
+
|
12
|
+
## [2.0.0-rc123] - 2020-08-26
|
13
|
+
### Added
|
14
|
+
- Added a thing.
|
15
|
+
|
16
|
+
## [1.0.0-alpha] - 2020-08-25
|
17
|
+
### Added
|
18
|
+
- Added a thing.
|
19
|
+
|
20
|
+
## [1.0.0-alpha.1] - 2020-08-24
|
21
|
+
### Added
|
22
|
+
- Added a thing.
|
23
|
+
|
24
|
+
## [1.0.0-0.3.7] - 2020-08-23
|
25
|
+
### Added
|
26
|
+
- Added a thing.
|
27
|
+
|
28
|
+
## [1.0.0-x.7.z.92] - 2020-08-22
|
29
|
+
### Added
|
30
|
+
- Added a thing.
|
31
|
+
|
32
|
+
## [1.0.0-x-y-z.-] - 2020-08-21
|
33
|
+
### Added
|
34
|
+
- Added a thing.
|
35
|
+
|
36
|
+
## [1.0.0] - 2019-01-03
|
37
|
+
### Deprecated
|
38
|
+
- Some things were deprecated.
|
39
|
+
|
40
|
+
## 0.1.0 - 2018-11-28
|
41
|
+
### Removed
|
42
|
+
- Removed all
|
43
|
+
the things.
|
44
|
+
|
45
|
+
[Unreleased]: https://github.com/conjurinc/evoke/compare/v2.0.0-rc123...HEAD
|
46
|
+
[2.0.0-rc123]: https://github.com/conjurinc/evoke/compare/v1.0.0-alpha...v2.0.0-rc123
|
47
|
+
[1.0.0-alpha]: https://github.com/conjurinc/evoke/compare/v1.0.0-alpha.1...v1.0.0-alpha
|
48
|
+
[1.0.0-alpha.1]: https://github.com/conjurinc/evoke/compare/v1.0.0-0.3.7...v1.0.0-alpha.1
|
49
|
+
[1.0.0-0.3.7]: https://github.com/conjurinc/evoke/compare/v1.0.0-x.7.z.92...v1.0.0-0.3.7
|
50
|
+
[1.0.0-x.7.z.92]: https://github.com/conjurinc/evoke/compare/v1.0.0-x-y-z.-...v1.0.0-x.7.z.92
|
51
|
+
[1.0.0-x-y-z.-]: https://github.com/conjurinc/evoke/compare/v1.0.0...v1.0.0-x-y-z.-
|
52
|
+
[1.0.0]: https://github.com/conjurinc/evoke/compare/v0.1.0...v1.0.0
|
@@ -0,0 +1,31 @@
|
|
1
|
+
# Changelog
|
2
|
+
All notable changes to this project will be documented in this file.
|
3
|
+
|
4
|
+
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
|
5
|
+
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
|
6
|
+
|
7
|
+
## [Unreleased]
|
8
|
+
### Added
|
9
|
+
- Added a thing.
|
10
|
+
|
11
|
+
### Changed
|
12
|
+
* Changed a thing.
|
13
|
+
|
14
|
+
## [1.0.0] - 2019-01-03
|
15
|
+
### Deprecated
|
16
|
+
- Some things were deprecated.
|
17
|
+
|
18
|
+
## 0.1.0 - 2018-11-28
|
19
|
+
### Removed
|
20
|
+
- Removed all
|
21
|
+
the things.
|
22
|
+
|
23
|
+
### Fixed
|
24
|
+
- Fixed all the bugs from the non-existent previous release.
|
25
|
+
|
26
|
+
### Security
|
27
|
+
- We are so secure now.
|
28
|
+
- The securest.
|
29
|
+
|
30
|
+
[Unreleased]: https://github.com/conjurinc/evoke/compare/v1.0.0...HEAD
|
31
|
+
[1.0.0]: https://github.com/conjurinc/evoke/compare/v0.1.0...v1.0.0
|
@@ -0,0 +1,31 @@
|
|
1
|
+
# Changelog
|
2
|
+
All notable changes to this project will be documented in this file.
|
3
|
+
|
4
|
+
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
|
5
|
+
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
|
6
|
+
|
7
|
+
## [Unreleased]
|
8
|
+
### Added
|
9
|
+
- Added a thing.
|
10
|
+
|
11
|
+
### Changed
|
12
|
+
- Changed a thing.
|
13
|
+
|
14
|
+
## [1.0.0] - 2019-01-03
|
15
|
+
### Deprecated
|
16
|
+
- Some things were deprecated.
|
17
|
+
|
18
|
+
## 0.1.0 / 2018-11-28
|
19
|
+
### Removed
|
20
|
+
- Removed all
|
21
|
+
the things.
|
22
|
+
|
23
|
+
### Fixed
|
24
|
+
- Fixed all the bugs from the non-existent previous release.
|
25
|
+
|
26
|
+
### Security
|
27
|
+
- We are so secure now.
|
28
|
+
- The securest.
|
29
|
+
|
30
|
+
[Unreleased]: https://github.com/conjurinc/evoke/compare/v1.0.0...HEAD
|
31
|
+
[1.0.0]: https://github.com/conjurinc/evoke/compare/v0.1.0...v1.0.0
|
@@ -0,0 +1,31 @@
|
|
1
|
+
# Changelog
|
2
|
+
All notable changes to this project will be documented in this file.
|
3
|
+
|
4
|
+
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
|
5
|
+
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
|
6
|
+
|
7
|
+
## [Unreleased]
|
8
|
+
### Added
|
9
|
+
- Added a thing.
|
10
|
+
|
11
|
+
### Changed
|
12
|
+
- Changed a thing.
|
13
|
+
|
14
|
+
## [1.0.0] - 2019-01-03
|
15
|
+
## Deprecated
|
16
|
+
- Some things were deprecated.
|
17
|
+
|
18
|
+
## 0.1.0 - 2018-11-28
|
19
|
+
### Removed
|
20
|
+
- Removed all
|
21
|
+
the things.
|
22
|
+
|
23
|
+
### Fixed
|
24
|
+
- Fixed all the bugs from the non-existent previous release.
|
25
|
+
|
26
|
+
### Security
|
27
|
+
- We are so secure now.
|
28
|
+
- The securest.
|
29
|
+
|
30
|
+
[Unreleased]: https://github.com/conjurinc/evoke/compare/v1.0.0...HEAD
|
31
|
+
[1.0.0]: https://github.com/conjurinc/evoke/compare/v0.1.0...v1.0.0
|
@@ -0,0 +1,31 @@
|
|
1
|
+
# Changelog
|
2
|
+
All notable changes to this project will be documented in this file.
|
3
|
+
|
4
|
+
The is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
|
5
|
+
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
|
6
|
+
|
7
|
+
## [Unreleased]
|
8
|
+
### Added
|
9
|
+
- Added a thing.
|
10
|
+
|
11
|
+
### Changed
|
12
|
+
- Changed a thing.
|
13
|
+
|
14
|
+
## [1.0.0] - 2019-01-03
|
15
|
+
### Deprecated
|
16
|
+
- Some things were deprecated.
|
17
|
+
|
18
|
+
## 0.1.0 - 2018-11-28
|
19
|
+
### Removed
|
20
|
+
- Removed all
|
21
|
+
the things.
|
22
|
+
|
23
|
+
### Fixed
|
24
|
+
- Fixed all the bugs from the non-existent previous release.
|
25
|
+
|
26
|
+
### Security
|
27
|
+
- We are so secure now.
|
28
|
+
- The securest.
|
29
|
+
|
30
|
+
[Unreleased]: https://github.com/conjurinc/evoke/compare/v1.0.0...HEAD
|
31
|
+
[1.0.0]: https://github.com/conjurinc/evoke/compare/v0.1.0...v1.0.0
|
@@ -0,0 +1,10 @@
|
|
1
|
+
# Changelog
|
2
|
+
All notable changes to this project will be documented in this file.
|
3
|
+
|
4
|
+
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
|
5
|
+
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
|
6
|
+
|
7
|
+
## [Unreleased]
|
8
|
+
|
9
|
+
[Unreleased]: https://github.com/conjurinc/evoke/compare/v0.1.0...HEAD
|
10
|
+
[0.1.0]: https://github.com/conjurinc/evoke/invalid_version
|
@@ -0,0 +1,31 @@
|
|
1
|
+
# Changelog
|
2
|
+
All notable changes to this project will be documented in this file.
|
3
|
+
|
4
|
+
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
|
5
|
+
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
|
6
|
+
|
7
|
+
## [Unreleased]
|
8
|
+
### Added
|
9
|
+
- Added a thing.
|
10
|
+
|
11
|
+
### Changed
|
12
|
+
- Changed a thing.
|
13
|
+
|
14
|
+
## [1.0.0] - 2019-1-03
|
15
|
+
### Deprecated
|
16
|
+
- Some things were deprecated.
|
17
|
+
|
18
|
+
## 0.1.0 - 2018-11-28
|
19
|
+
### Removed
|
20
|
+
- Removed all
|
21
|
+
the things.
|
22
|
+
|
23
|
+
### Fixed
|
24
|
+
- Fixed all the bugs from the non-existent previous release.
|
25
|
+
|
26
|
+
### Security
|
27
|
+
- We are so secure now.
|
28
|
+
- The securest.
|
29
|
+
|
30
|
+
[Unreleased]: https://github.com/conjurinc/evoke/compare/v1.0.0...HEAD
|
31
|
+
[1.0.0]: https://github.com/conjurinc/evoke/compare/v0.1.0...v1.0.0
|
@@ -0,0 +1,31 @@
|
|
1
|
+
# Changelog
|
2
|
+
All notable changes to this project will be documented in this file.
|
3
|
+
|
4
|
+
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
|
5
|
+
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
|
6
|
+
|
7
|
+
## [Unreleased]
|
8
|
+
### Added
|
9
|
+
- Added a thing.
|
10
|
+
|
11
|
+
### Changed
|
12
|
+
- Changed a thing.
|
13
|
+
|
14
|
+
### [1.0.0] - 2019-01-03
|
15
|
+
### Deprecated
|
16
|
+
- Some things were deprecated.
|
17
|
+
|
18
|
+
## 0.1.0 - 2018-11-28
|
19
|
+
### Removed
|
20
|
+
- Removed all
|
21
|
+
the things.
|
22
|
+
|
23
|
+
### Fixed
|
24
|
+
- Fixed all the bugs from the non-existent previous release.
|
25
|
+
|
26
|
+
### Security
|
27
|
+
- We are so secure now.
|
28
|
+
- The securest.
|
29
|
+
|
30
|
+
[Unreleased]: https://github.com/conjurinc/evoke/compare/v1.0.0...HEAD
|
31
|
+
[1.0.0]: https://github.com/conjurinc/evoke/compare/v0.1.0...v1.0.0
|
@@ -0,0 +1,31 @@
|
|
1
|
+
# Changelog
|
2
|
+
All notable changes to this project will be documented in this file.
|
3
|
+
|
4
|
+
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
|
5
|
+
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
|
6
|
+
|
7
|
+
## [Unreleased]
|
8
|
+
### Added
|
9
|
+
- Added a thing.
|
10
|
+
|
11
|
+
### Changed
|
12
|
+
- Changed a thing.
|
13
|
+
|
14
|
+
## [1..0] - 2019-01-03
|
15
|
+
### Deprecated
|
16
|
+
- Some things were deprecated.
|
17
|
+
|
18
|
+
## 0.1.0 - 2018-11-28
|
19
|
+
### Removed
|
20
|
+
- Removed all
|
21
|
+
the things.
|
22
|
+
|
23
|
+
### Fixed
|
24
|
+
- Fixed all the bugs from the non-existent previous release.
|
25
|
+
|
26
|
+
### Security
|
27
|
+
- We are so secure now.
|
28
|
+
- The securest.
|
29
|
+
|
30
|
+
[Unreleased]: https://github.com/conjurinc/evoke/compare/v1.0.0...HEAD
|
31
|
+
[1.0.0]: https://github.com/conjurinc/evoke/compare/v0.1.0...v1.0.0
|
@@ -0,0 +1,31 @@
|
|
1
|
+
# Changelog
|
2
|
+
All notable changes to this project will be documented in this file.
|
3
|
+
|
4
|
+
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
|
5
|
+
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
|
6
|
+
|
7
|
+
## [Unreleasd]
|
8
|
+
### Added
|
9
|
+
- Added a thing.
|
10
|
+
|
11
|
+
### Changed
|
12
|
+
- Changed a thing.
|
13
|
+
|
14
|
+
## [1.0.0] - 2019-01-03
|
15
|
+
### Deprecated
|
16
|
+
- Some things were deprecated.
|
17
|
+
|
18
|
+
## 0.1.0 - 2018-11-28
|
19
|
+
### Removed
|
20
|
+
- Removed all
|
21
|
+
the things.
|
22
|
+
|
23
|
+
### Fixed
|
24
|
+
- Fixed all the bugs from the non-existent previous release.
|
25
|
+
|
26
|
+
### Security
|
27
|
+
- We are so secure now.
|
28
|
+
- The securest.
|
29
|
+
|
30
|
+
[Unreleased]: https://github.com/conjurinc/evoke/compare/v1.0.0...HEAD
|
31
|
+
[1.0.0]: https://github.com/conjurinc/evoke/compare/v0.1.0...v1.0.0
|
@@ -0,0 +1,31 @@
|
|
1
|
+
# Changelog
|
2
|
+
All notable changes to this project will be documented in this file.
|
3
|
+
|
4
|
+
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
|
5
|
+
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
|
6
|
+
|
7
|
+
## [Unreleased]
|
8
|
+
### Added
|
9
|
+
- Added a thing.
|
10
|
+
|
11
|
+
### Changed
|
12
|
+
- Changed a thing.
|
13
|
+
|
14
|
+
## [1.0.0] - 2019-01-03
|
15
|
+
### Deprecated
|
16
|
+
- Some things were deprecated.
|
17
|
+
|
18
|
+
## 0.1.0 - 2018-11-28
|
19
|
+
### Removed
|
20
|
+
- Removed all
|
21
|
+
the things.
|
22
|
+
|
23
|
+
### Fixed
|
24
|
+
- Fixed all the bugs from the non-existent previous release.
|
25
|
+
|
26
|
+
### Security
|
27
|
+
- We are so secure now.
|
28
|
+
- The securest.
|
29
|
+
|
30
|
+
[Unreleased]: https://github.com/conjurinc/evoke/compare/v1.0.0...HEAD
|
31
|
+
[1.0.0]: https://github.com/conjurinc/evoke/compare/v0.1.0...v1.0.0
|
@@ -0,0 +1,30 @@
|
|
1
|
+
# Changelog
|
2
|
+
All notable changes to this project will be documented in this file.
|
3
|
+
|
4
|
+
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
|
5
|
+
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
|
6
|
+
|
7
|
+
## [Unreleased]
|
8
|
+
### Added
|
9
|
+
- Added a thing.
|
10
|
+
|
11
|
+
### Changed
|
12
|
+
- Changed a thing.
|
13
|
+
|
14
|
+
## [1.0.0] - 2019-01-03
|
15
|
+
### Deprecated
|
16
|
+
- Some things were deprecated.
|
17
|
+
|
18
|
+
## 0.1.0 - 2018-11-28
|
19
|
+
### Removed
|
20
|
+
- Removed all
|
21
|
+
the things.
|
22
|
+
|
23
|
+
### Fixed
|
24
|
+
- Fixed all the bugs from the non-existent previous release.
|
25
|
+
|
26
|
+
### Security
|
27
|
+
- We are so secure now.
|
28
|
+
- The securest.
|
29
|
+
[Unreleased]: https://github.com/conjurinc/evoke/compare/v1.0.0...HEAD
|
30
|
+
[1.0.0]: https://github.com/conjurinc/evoke/compare/v0.1.0...v1.0.0
|
@@ -0,0 +1,30 @@
|
|
1
|
+
# Changelog
|
2
|
+
All notable changes to this project will be documented in this file.
|
3
|
+
|
4
|
+
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
|
5
|
+
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
|
6
|
+
|
7
|
+
## [Unreleased]
|
8
|
+
### Added
|
9
|
+
- Added a thing.
|
10
|
+
|
11
|
+
### Changed
|
12
|
+
- Changed a thing.
|
13
|
+
## [1.0.0] - 2019-01-03
|
14
|
+
### Deprecated
|
15
|
+
- Some things were deprecated.
|
16
|
+
|
17
|
+
## 0.1.0 - 2018-11-28
|
18
|
+
### Removed
|
19
|
+
- Removed all
|
20
|
+
the things.
|
21
|
+
|
22
|
+
### Fixed
|
23
|
+
- Fixed all the bugs from the non-existent previous release.
|
24
|
+
|
25
|
+
### Security
|
26
|
+
- We are so secure now.
|
27
|
+
- The securest.
|
28
|
+
|
29
|
+
[Unreleased]: https://github.com/conjurinc/evoke/compare/v1.0.0...HEAD
|
30
|
+
[1.0.0]: https://github.com/conjurinc/evoke/compare/v0.1.0...v1.0.0
|