mnconvert 1.13.1 → 1.16.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: '084c072c4bb280db751ffb05fb0e593c2191f0c5a7b9dafbe69880510488b268'
4
- data.tar.gz: 9dc55ba0711e6ad14e7013cf0f5784bb123a1b21c991ee8d6a282f2b8316f1cf
3
+ metadata.gz: 70091b1220c5ce8037dfbdd9cb42dab7eb4e11052b005bf453f44a2b6a8799a5
4
+ data.tar.gz: 0d3c7fbe9ccac97227c8f68fe2071c84324dd22b795a0dd01e896a761fd7edab
5
5
  SHA512:
6
- metadata.gz: 5b63f18666b9306e3a1c386f62ed1d280127d3da56a8eccdea223189be604f07cde13321b2e880efb92bd3ad2483b2155cef7a3928e4e3d17911589b5d9359ac
7
- data.tar.gz: 0fd0ce62bc2517f095348c428ee5ea6a7cd7fe335c23478183bb73d82f30a5ffac91d9e4031d8e501db6c00c49e8a5834704a300278e43480f005a95b6d51bd4
6
+ metadata.gz: 3eab24aee5fa67a9db5218b995153c2daa50eda094e80361b18e2f429b6a2a394d3b082698c65a6a741e7287818a4d169179239128be0dfb7ad6f8eeaaf824aa
7
+ data.tar.gz: c858a9ca2d8d74a887962236436d2d6cf1a7390253674d8c4b842816d663c383806944de1d72b0a27fe0216444e5096dc8029efe1dfd87a0d93fd04573a423a6
@@ -10,23 +10,6 @@ on:
10
10
 
11
11
  jobs:
12
12
  rake:
13
- name: Test on Ruby ${{ matrix.ruby }} ${{ matrix.os }}
14
- runs-on: ${{ matrix.os }}
15
- continue-on-error: ${{ matrix.experimental }}
16
- strategy:
17
- fail-fast: false
18
- matrix:
19
- ruby: [ '3.0', '2.7', '2.6', '2.5' ]
20
- os: [ ubuntu-latest, windows-latest, macos-latest ]
21
- experimental: [ false ]
22
- steps:
23
- - uses: actions/checkout@v2
24
- with:
25
- submodules: true
26
-
27
- - uses: ruby/setup-ruby@v1
28
- with:
29
- ruby-version: ${{ matrix.ruby }}
30
- bundler-cache: true
31
-
32
- - run: bundle exec rake
13
+ uses: metanorma/metanorma-build-scripts/.github/workflows/generic-rake.yml@main
14
+ secrets:
15
+ pat_token: ${{ secrets.METANORMA_CI_PAT_TOKEN }}
@@ -7,7 +7,7 @@ on:
7
7
  jobs:
8
8
  tag_repo:
9
9
  runs-on: ubuntu-18.04
10
- if: false # startsWith(github.event.client_payload.ref, 'refs/tags/v')
10
+ if: startsWith(github.event.client_payload.ref, 'refs/tags/v')
11
11
  steps:
12
12
  - uses: actions/checkout@v2
13
13
  with:
@@ -32,7 +32,7 @@ jobs:
32
32
 
33
33
  - run: |
34
34
  rm -f bin/mnconvert.jar
35
- rake bin/mnconvert.jar
35
+ bundle exec rake bin/mnconvert.jar
36
36
 
37
37
  - run: bundle exec rake
38
38
 
@@ -4,6 +4,7 @@ on:
4
4
  push:
5
5
  tags:
6
6
  - '*'
7
+ workflow_dispatch: # just for manual release if previous was failed
7
8
 
8
9
  jobs:
9
10
  release:
data/bin/mnconvert.jar CHANGED
Binary file
@@ -1,4 +1,4 @@
1
1
  module MnConvert
2
- VERSION = "1.13.1"
3
- MNCONVERT_JAR_VERSION = "1.13.0"
2
+ VERSION = "1.16.0"
3
+ MNCONVERT_JAR_VERSION = VERSION
4
4
  end
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.13.1
4
+ version: 1.16.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: 2021-12-13 00:00:00.000000000 Z
11
+ date: 2022-04-14 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: |
14
14
  mnconvert converts Metanorma XML into NISO STS XML.
@@ -21,7 +21,6 @@ extensions: []
21
21
  extra_rdoc_files: []
22
22
  files:
23
23
  - ".github/workflows/rake.yml"
24
- - ".github/workflows/release-manual.yml"
25
24
  - ".github/workflows/release-tag.yml"
26
25
  - ".github/workflows/release.yml"
27
26
  - ".gitignore"
@@ -1,33 +0,0 @@
1
- name: release-manual
2
-
3
- on:
4
- workflow_dispatch:
5
- inputs:
6
- next_version:
7
- description: |
8
- Next release version. Possible values: x.y.z, major, minor, patch or pre|rc|etc
9
- required: true
10
- default: 'skip'
11
-
12
- jobs:
13
- release:
14
- runs-on: ubuntu-latest
15
- steps:
16
- - uses: actions/checkout@v2
17
- with:
18
- token: ${{ secrets.METANORMA_CI_PAT_TOKEN }}
19
-
20
- - run: |
21
- git config --global user.name "metanorma-ci"
22
- git config --global user.email "metanorma-ci@users.noreply.github.com"
23
-
24
- - uses: ruby/setup-ruby@v1
25
- with:
26
- ruby-version: '2.6'
27
- bundler-cache: true
28
-
29
- - run: gem install gem-release
30
-
31
- - if: github.event_name == 'workflow_dispatch' && github.event.inputs.next_version != 'skip'
32
- run: gem bump --version ${{ github.event.inputs.next_version }} --tag --push
33
-