reissue 0.2.0 → 0.2.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -12
- data/README.md +9 -0
- data/lib/reissue/rake.rb +2 -0
- data/lib/reissue/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2b4d0a53280207aedc9381894922ca1efb28e0acb20d5bd97bbcb7fe2cd6a7cc
|
4
|
+
data.tar.gz: d649658ae57c53e5d3e78c5096d9248ddf941f85c074e1e3543e0eeda12678d2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9b7adacabff52f5c82e2a0f703d2f808174caf2af29fd244200ea9f0f9ff91887a31336d69ed0d8e37ff52084128fc01677e70d0fc5d3c12b738ada62f916ede
|
7
|
+
data.tar.gz: 330d439a724f349bc7b1f18ee1a47ca7fecf913749452d460894d5e659a8a7fcc80e13140f6b78d3c36d66ec7d28caa6110877e0cf742a191b6203676ee7bd67
|
data/CHANGELOG.md
CHANGED
@@ -5,28 +5,26 @@ All notable changes to this project will be documented in this file.
|
|
5
5
|
The format is based on [Keep a Changelog](http://keepachangelog.com/)
|
6
6
|
and this project adheres to [Semantic Versioning](http://semver.org/).
|
7
7
|
|
8
|
-
## [0.2.
|
8
|
+
## [0.2.1] - 2024-07-29
|
9
9
|
|
10
10
|
### Added
|
11
11
|
|
12
|
-
-
|
13
|
-
|
14
|
-
### Removed
|
12
|
+
- Release notes and the checksum for the 0.2.0 version
|
15
13
|
|
16
|
-
|
14
|
+
### Changed
|
17
15
|
|
18
|
-
|
16
|
+
- Return the new version from the reissue task
|
19
17
|
|
20
|
-
|
18
|
+
## [0.2.0] - 2024-07-02
|
21
19
|
|
22
|
-
|
20
|
+
### Added
|
23
21
|
|
24
|
-
|
22
|
+
- Reissue::Markdown class to implement the Reissue::Parser.parse behavior
|
25
23
|
|
26
|
-
|
24
|
+
### Removed
|
27
25
|
|
28
|
-
|
26
|
+
- Reissue::Parser implementation
|
29
27
|
|
30
28
|
### Fixed
|
31
29
|
|
32
|
-
-
|
30
|
+
- Handle multiline changes
|
data/README.md
CHANGED
@@ -112,6 +112,15 @@ end
|
|
112
112
|
|
113
113
|
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake test` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
114
114
|
|
115
|
+
## Releasing
|
116
|
+
|
117
|
+
Run `rake build:checksum` to build the gem and generate the checksum. This will also update the version number in the gemspec file.
|
118
|
+
|
119
|
+
Run `rake release` to create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
120
|
+
|
121
|
+
This will leave a new commit with the version number incremented in the version file and the changelog updated with the new version.
|
122
|
+
Push the changes to the repository.
|
123
|
+
|
115
124
|
## Contributing
|
116
125
|
|
117
126
|
Bug reports and pull requests are welcome on GitHub at https://github.com/SOFware/reissue.
|
data/lib/reissue/rake.rb
CHANGED
data/lib/reissue/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: reissue
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jim Gay
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-07-
|
11
|
+
date: 2024-07-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rake
|