bake-releases 0.3.0 → 0.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- checksums.yaml.gz.sig +0 -0
- data/bake/releases.rb +3 -3
- data/lib/bake/releases/version.rb +1 -1
- data/readme.md +9 -25
- data/releases.md +13 -4
- data.tar.gz.sig +0 -0
- metadata +4 -9
- metadata.gz.sig +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: debab81fa4c1eca42611442b2d1c0e64af432513c2a558bc8e23ae25e284a509
|
4
|
+
data.tar.gz: 34a9f14e81f38da31588292d9c7a68d22db2a8efae6c0933343e0277ccd1175b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9655d3f0d11542464a01d88c572873923976e2ed9f2590e603953da4e18ec1877dd1cecdf6dad2209fc49b45a2ffb2d94c6ba126f324c66875ee254888f03828
|
7
|
+
data.tar.gz: 27aa6bc8c18c71b33062fee77d71fe6b04408e1c24c8d0c053df921b3c14e5c33b5688953e002ecfcb8e8426d7d7ded7bfb95109fa939f087d20bf5a5b56ef49
|
checksums.yaml.gz.sig
CHANGED
Binary file
|
data/bake/releases.rb
CHANGED
@@ -10,7 +10,7 @@
|
|
10
10
|
# @parameter version [String] The version number to release.
|
11
11
|
def update(version)
|
12
12
|
self.update_document do |document|
|
13
|
-
if node = document.find_header(
|
13
|
+
if node = document.find_header("Unreleased")
|
14
14
|
# Create a new text node with the version number:
|
15
15
|
child = Markly::Node.new(:text)
|
16
16
|
child.string_content = version.to_s
|
@@ -25,11 +25,11 @@ end
|
|
25
25
|
private
|
26
26
|
|
27
27
|
def releases_path(root = context.root)
|
28
|
-
File.join(root,
|
28
|
+
File.join(root, "releases.md")
|
29
29
|
end
|
30
30
|
|
31
31
|
def update_document(path = self.releases_path)
|
32
|
-
require
|
32
|
+
require "markly"
|
33
33
|
|
34
34
|
if File.exist?(path)
|
35
35
|
document = Markly.parse(File.read(path))
|
data/readme.md
CHANGED
@@ -1,35 +1,19 @@
|
|
1
1
|
# Bake::Releases
|
2
2
|
|
3
|
-
|
3
|
+
Please see the [project releases](https://ioquatix.github.io/bake-releases/releases/index) for all releases.
|
4
4
|
|
5
|
-
|
5
|
+
### v0.4.0
|
6
6
|
|
7
|
-
|
7
|
+
- Add documentation and agent context.
|
8
8
|
|
9
|
-
###
|
9
|
+
### v0.3.0
|
10
10
|
|
11
|
-
|
12
|
-
# bake.rb
|
11
|
+
- Rename `changes` -\> `releases`.
|
13
12
|
|
14
|
-
|
15
|
-
context['releases:update'].call(version)
|
16
|
-
end
|
17
|
-
```
|
13
|
+
### v0.2.0
|
18
14
|
|
19
|
-
|
15
|
+
- Directly use supplied version.
|
20
16
|
|
21
|
-
|
17
|
+
### v0.1.0
|
22
18
|
|
23
|
-
|
24
|
-
2. Create your feature branch (`git checkout -b my-new-feature`).
|
25
|
-
3. Commit your releases (`git commit -am 'Add some feature'`).
|
26
|
-
4. Push to the branch (`git push origin my-new-feature`).
|
27
|
-
5. Create new Pull Request.
|
28
|
-
|
29
|
-
### Developer Certificate of Origin
|
30
|
-
|
31
|
-
In order to protect users of this project, we require all contributors to comply with the [Developer Certificate of Origin](https://developercertificate.org/). This ensures that all contributions are properly licensed and attributed.
|
32
|
-
|
33
|
-
### Community Guidelines
|
34
|
-
|
35
|
-
This project is best served by a collaborative and respectful environment. Treat each other professionally, respect differing viewpoints, and engage constructively. Harassment, discrimination, or harmful behavior is not tolerated. Communicate clearly, listen actively, and support one another. If any issues arise, please inform the project maintainers.
|
19
|
+
- Initial implementation.
|
data/releases.md
CHANGED
@@ -1,8 +1,17 @@
|
|
1
1
|
# Releases
|
2
2
|
|
3
|
-
##
|
3
|
+
## v0.4.0
|
4
4
|
|
5
|
-
|
5
|
+
- Add documentation and agent context.
|
6
6
|
|
7
|
-
|
8
|
-
|
7
|
+
## v0.3.0
|
8
|
+
|
9
|
+
- Rename `changes` -\> `releases`.
|
10
|
+
|
11
|
+
## v0.2.0
|
12
|
+
|
13
|
+
- Directly use supplied version.
|
14
|
+
|
15
|
+
## v0.1.0
|
16
|
+
|
17
|
+
- Initial implementation.
|
data.tar.gz.sig
CHANGED
Binary file
|
metadata
CHANGED
@@ -1,11 +1,10 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bake-releases
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.4.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Samuel Williams
|
8
|
-
autorequire:
|
9
8
|
bindir: bin
|
10
9
|
cert_chain:
|
11
10
|
- |
|
@@ -37,7 +36,7 @@ cert_chain:
|
|
37
36
|
Q2K9NVun/S785AP05vKkXZEFYxqG6EW012U4oLcFl5MySFajYXRYbuUpH6AY+HP8
|
38
37
|
voD0MPg1DssDLKwXyt1eKD/+Fq0bFWhwVM/1XiAXL7lyYUyOq24KHgQ2Csg=
|
39
38
|
-----END CERTIFICATE-----
|
40
|
-
date:
|
39
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
41
40
|
dependencies:
|
42
41
|
- !ruby/object:Gem::Dependency
|
43
42
|
name: bake
|
@@ -67,8 +66,6 @@ dependencies:
|
|
67
66
|
- - "~>"
|
68
67
|
- !ruby/object:Gem::Version
|
69
68
|
version: '0.8'
|
70
|
-
description:
|
71
|
-
email:
|
72
69
|
executables: []
|
73
70
|
extensions: []
|
74
71
|
extra_rdoc_files: []
|
@@ -85,7 +82,6 @@ metadata:
|
|
85
82
|
documentation_uri: https://ioquatix.github.io/bake-releases/
|
86
83
|
funding_uri: https://github.com/sponsors/ioquatix/
|
87
84
|
source_code_uri: https://github.com/ioquatix/bake-releases.git
|
88
|
-
post_install_message:
|
89
85
|
rdoc_options: []
|
90
86
|
require_paths:
|
91
87
|
- lib
|
@@ -93,15 +89,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
93
89
|
requirements:
|
94
90
|
- - ">="
|
95
91
|
- !ruby/object:Gem::Version
|
96
|
-
version: '3.
|
92
|
+
version: '3.2'
|
97
93
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
98
94
|
requirements:
|
99
95
|
- - ">="
|
100
96
|
- !ruby/object:Gem::Version
|
101
97
|
version: '0'
|
102
98
|
requirements: []
|
103
|
-
rubygems_version: 3.
|
104
|
-
signing_key:
|
99
|
+
rubygems_version: 3.6.9
|
105
100
|
specification_version: 4
|
106
101
|
summary: Releases document management.
|
107
102
|
test_files: []
|
metadata.gz.sig
CHANGED
Binary file
|