nestedtext 0.2.0 → 0.3.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5a5cc29794e1c25e022f4d7d8a55699ea992184d2e57524c3f0cff863dc74729
4
- data.tar.gz: 7285c3eae03c21a52377fb9ba1c6eb35fcdcaf7d74ddb12ae97eae5a2c3e59d0
3
+ metadata.gz: 5fe5a1d88543266b69827809288cd9f23841fa664fa3568aad6e452804f14a40
4
+ data.tar.gz: 313cece746c092cc5a5468f6e95fe7da2d151762575bf9e3356d1c30914f8efb
5
5
  SHA512:
6
- metadata.gz: 49473c71d4efe24d53cb3fdfc2528ed79df845e81020b7a5adc0c23291229297443865799fa783ad1bc0af5c5dc1b35837d700194cb35015086e0e6ddf9e7f7e
7
- data.tar.gz: aecd6761eef6157783ce35b76acc8a8c0ff69fda4d618389625f8bf2641eb1b05bd7331090bbaf97095638d2e70615d310fc0cc29cc9509bf3883b04405f3f8b
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
- [![Tests](https://github.com/erikw/nestedtext-ruby/actions/workflows/ci.yml/badge.svg)](https://github.com/erikw/nestedtext-ruby/actions/workflows/ci.yml)
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
- [![CodeQL](https://github.com/erikw/nestedtext-ruby/actions/workflows/codeql-analysis.yml/badge.svg)](https://github.com/erikw/nestedtext-ruby/actions/workflows/codeql-analysis.yml)
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 "Prepare release" && git push
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 "Prepare release" && git push
109
+ $ git commit -am "Update CHANGELOG.md" && git push
109
110
  $ gem bump --version minor --tag --sign --push
110
111
  ```
111
112
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module NestedText
4
- VERSION = "0.2.0"
4
+ VERSION = "0.3.0"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: nestedtext
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Erik Westrup