nestedtext 0.2.0 → 0.3.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +2 -1
- data/README.md +6 -5
- data/lib/nestedtext/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5fe5a1d88543266b69827809288cd9f23841fa664fa3568aad6e452804f14a40
|
4
|
+
data.tar.gz: 313cece746c092cc5a5468f6e95fe7da2d151762575bf9e3356d1c30914f8efb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ce3a5a3ec78d7eb23b6e33f1c4299dadd064db01afc3827e3f17d7012186ed365efda05acbc748a4133816aeed89922c5a2d0724644e6134bbc30a3420db30ae
|
7
|
+
data.tar.gz: d1d96f587888f0befbf2cd7963a5e8ab51ed2a2f9f6e40187426d3dfe7b3a72c5b9710ac0fbf2ab9350a31f5953c310816ce8ede8e2832cd0618daa7dcdfa941
|
data/CHANGELOG.md
CHANGED
@@ -6,9 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
6
6
|
|
7
7
|
## [Unreleased]
|
8
8
|
|
9
|
+
## [0.3.0] - 2022-01-24
|
10
|
+
- Iteration on CD GitHub Actins workflow.
|
9
11
|
|
10
12
|
## [0.2.0] - 2022-01-24
|
11
|
-
### Added
|
12
13
|
- Iteration on CD GitHub Actins workflow.
|
13
14
|
|
14
15
|
## [0.1.0] - 2022-01-24
|
data/README.md
CHANGED
@@ -2,9 +2,10 @@
|
|
2
2
|
[![Gem Version](https://badge.fury.io/rb/nestedtext.svg)](https://badge.fury.io/rb/nestedtext)
|
3
3
|
[![Gem Downloads](https://ruby-gem-downloads-badge.herokuapp.com/nestedtext?color=brightgreen&type=total&label=gem%20downloads)](https://rubygems.org/gems/nestedtext)
|
4
4
|
[![Data Format Version Supported](https://img.shields.io/badge/%F0%9F%84%BD%F0%9F%85%83%20Version%20Supported-3.2.1-blueviolet)](https://nestedtext.org/en/v3.2/)
|
5
|
-
[![
|
5
|
+
[![GitHub Actions: Continuous Integration](https://github.com/erikw/nestedtext-ruby/actions/workflows/ci.yml/badge.svg)](https://github.com/erikw/nestedtext-ruby/actions/workflows/ci.yml)
|
6
6
|
[![Official Tests](https://img.shields.io/badge/%F0%9F%8F%81%20Official%20Tests-Passing-success)](https://github.com/KenKundert/nestedtext_tests/tree/585e95a73d94ac1f48e71a154e2db0ab67cf30fa)
|
7
|
-
[![
|
7
|
+
[![GitHub Actions: Continuous Deployment](https://github.com/erikw/nestedtext-ruby/actions/workflows/cd.yml/badge.svg)](https://github.com/erikw/nestedtext-ruby/actions/workflows/cd.yml)
|
8
|
+
[![GitHub Actions: CodeQL Analysis](https://github.com/erikw/nestedtext-ruby/actions/workflows/codeql-analysis.yml/badge.svg)](https://github.com/erikw/nestedtext-ruby/actions/workflows/codeql-analysis.yml)
|
8
9
|
[![Code Climate Maintainability](https://api.codeclimate.com/v1/badges/8409b6cdc3dc62a33f6f/maintainability)](https://codeclimate.com/github/erikw/nestedtext-ruby/maintainability)
|
9
10
|
[![Code Climate Test Coverage](https://api.codeclimate.com/v1/badges/8409b6cdc3dc62a33f6f/test_coverage)](https://codeclimate.com/github/erikw/nestedtext-ruby/test_coverage)
|
10
11
|
[![SLOC](https://img.shields.io/tokei/lines/github/erikw/nestedtext-ruby)](#)
|
@@ -88,12 +89,12 @@ $ bundle exec rake release
|
|
88
89
|
## (semi-manually) Using gem-release gem extension
|
89
90
|
Using [gem-release](https://github.com/svenfuchs/gem-release):
|
90
91
|
```console
|
91
|
-
$ vi CHANGELOG.md && git commit -am "
|
92
|
+
$ vi CHANGELOG.md && git commit -am "Update CHANGELOG.md" && git push
|
92
93
|
$ gem bump --version minor --tag --sign --push --release
|
93
94
|
```
|
94
95
|
For `--version`, use `major|minor|patch` as needed.
|
95
96
|
|
96
|
-
## (semi-automatic) Using GitHub Actions CD
|
97
|
+
## (semi-automatic, preferred) Using GitHub Actions CD
|
97
98
|
Just push a new semver tag and the workflow [cd.yml](.github/workflows/cd.yml) will publish a new release at rubygems.org.
|
98
99
|
|
99
100
|
```console
|
@@ -105,7 +106,7 @@ $ git tag x.y.z && git push --tags
|
|
105
106
|
or combined with gem-release
|
106
107
|
```console
|
107
108
|
$ vi CHANGELOG.md
|
108
|
-
$ git commit -am "
|
109
|
+
$ git commit -am "Update CHANGELOG.md" && git push
|
109
110
|
$ gem bump --version minor --tag --sign --push
|
110
111
|
```
|
111
112
|
|
data/lib/nestedtext/version.rb
CHANGED