mnconvert 1.86.0 → 1.88.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
- data/.github/workflows/release.yml +23 -42
- data/bin/mnconvert.jar +0 -0
- data/lib/mnconvert/version.rb +1 -1
- metadata +2 -3
- data/.hound.yml +0 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 37e8209b88cbcbefbdf9180ace32276cbb716b530d03b127a8dbc705daae7cd9
|
|
4
|
+
data.tar.gz: 9ffebc9c4244c4dab77b7f49039cf64a9ab7280d65e82cefe735208177588b82
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9b4ec07f1e65b5b2c8906ab7b1ac79c1a339efe4693adb2e2390829bfdb47554d1d21060de370b0f08e1868b78039491deee5eb956806a2481b5268ac2e82e44
|
|
7
|
+
data.tar.gz: ce344fefb919c02b510ec10aee0cec5912391674603a67e81adf2e640815fe3e51fb7ced63f094a446a1aad6d017c294cd0c04b9fcfccdf2e931106af0af442e
|
|
@@ -1,16 +1,24 @@
|
|
|
1
1
|
name: release
|
|
2
2
|
|
|
3
|
+
# Thin caller for metanorma/ci generic-release.yml (ci#82 / #393 / #400).
|
|
4
|
+
# Keeps local prepare-ieee job; release needs [prepare, prepare-ieee].
|
|
5
|
+
|
|
3
6
|
on:
|
|
4
7
|
push:
|
|
5
8
|
tags:
|
|
6
|
-
-
|
|
9
|
+
- "*"
|
|
7
10
|
workflow_dispatch:
|
|
8
11
|
inputs:
|
|
9
12
|
next_version:
|
|
10
13
|
description: |
|
|
11
14
|
Next release version. Possible values: x.y.z, major, minor, patch or pre|rc|etc
|
|
12
15
|
required: true
|
|
13
|
-
default:
|
|
16
|
+
default: "skip"
|
|
17
|
+
type: string
|
|
18
|
+
|
|
19
|
+
permissions:
|
|
20
|
+
contents: write
|
|
21
|
+
id-token: write
|
|
14
22
|
|
|
15
23
|
jobs:
|
|
16
24
|
prepare:
|
|
@@ -22,43 +30,16 @@ jobs:
|
|
|
22
30
|
pat_token: ${{ secrets.METANORMA_CI_PAT_TOKEN }}
|
|
23
31
|
|
|
24
32
|
release:
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
- uses: actions/download-artifact@v4.1.7
|
|
40
|
-
with:
|
|
41
|
-
name: ieee-test-input
|
|
42
|
-
path: ieee
|
|
43
|
-
|
|
44
|
-
- run: gem install gem-release
|
|
45
|
-
|
|
46
|
-
- if: github.event_name == 'workflow_dispatch' && inputs.next_version != 'skip'
|
|
47
|
-
run: |
|
|
48
|
-
gem bump --version ${{ inputs.next_version }} --no-commit
|
|
49
|
-
rm -f bin/mnconvert.jar
|
|
50
|
-
bundle exec rake bin/mnconvert.jar
|
|
51
|
-
|
|
52
|
-
- run: bundle exec rake
|
|
53
|
-
|
|
54
|
-
- if: github.event_name == 'workflow_dispatch' && inputs.next_version != 'skip'
|
|
55
|
-
run: |
|
|
56
|
-
git add -u bin/mnconvert.jar lib/mnconvert/version.rb
|
|
57
|
-
git commit -m "Bump version to ${{ inputs.next_version }}"
|
|
58
|
-
git tag v${{ inputs.next_version }}
|
|
59
|
-
git push origin HEAD:${GITHUB_REF} --tags
|
|
60
|
-
|
|
61
|
-
- uses: actions-mn/gem-release@main
|
|
62
|
-
with:
|
|
63
|
-
api-key: ${{ secrets.METANORMA_CI_RUBYGEMS_API_KEY }}
|
|
64
|
-
release-command: gem release
|
|
33
|
+
needs: [prepare, prepare-ieee]
|
|
34
|
+
uses: metanorma/ci/.github/workflows/generic-release.yml@main
|
|
35
|
+
with:
|
|
36
|
+
ruby_version: ${{ needs.prepare.outputs.default-ruby-version }}
|
|
37
|
+
jar_name: mnconvert.jar
|
|
38
|
+
version_file_path: lib/mnconvert/version.rb
|
|
39
|
+
next_version: ${{ inputs.next_version || 'skip' }}
|
|
40
|
+
download_artifact_name: ieee-test-input
|
|
41
|
+
download_artifact_path: ieee
|
|
42
|
+
jar_needs_rebuild: true
|
|
43
|
+
git_add_includes_jar: true
|
|
44
|
+
secrets:
|
|
45
|
+
pat_token: ${{ secrets.METANORMA_CI_PAT_TOKEN }}
|
data/bin/mnconvert.jar
CHANGED
|
Binary file
|
data/lib/mnconvert/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: mnconvert
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.88.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ribose Inc.
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-
|
|
11
|
+
date: 2026-09-05 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: |
|
|
14
14
|
mnconvert converts Metanorma XML into NISO STS XML.
|
|
@@ -26,7 +26,6 @@ files:
|
|
|
26
26
|
- ".github/workflows/release-tag.yml"
|
|
27
27
|
- ".github/workflows/release.yml"
|
|
28
28
|
- ".gitignore"
|
|
29
|
-
- ".hound.yml"
|
|
30
29
|
- ".rspec"
|
|
31
30
|
- ".rubocop.yml"
|
|
32
31
|
- CODE_OF_CONDUCT.md
|