Skip to content

Commit

Permalink
update to XR 3.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
bdewein committed Sep 21, 2023
1 parent 759f44a commit 323a65d
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 12 deletions.
8 changes: 6 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,13 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
-->

## UNRELEASED
## 2023-09-22

This release is compatible with XRechnung ?.?.?
This release is compatible with XRechnung 3.0.x

### Changed

* Using [XRechnung Schematron 2.0.1](https://github.com/itplr-kosit/xrechnung-schematron/releases/tag/release-2.0.1)

## 2023-07-31

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ In particular this Validator Configuration integrates the following third-party

The git master branch always has the latest code. Since March 2018 new releases have the following naming and versioning scheme:

The source code gets tagged with `release-${release-date}` and distributions get the name `validator-configuration-xrechnung_${xrechnung-version}_${release-date}` e.g. `validator-configuration-xrechnung_3.0.0_2023-07-31.zip`
The source code gets tagged with `release-${release-date}` and distributions get the name `validator-configuration-xrechnung_${xrechnung-version}_${release-date}` e.g. `validator-configuration-xrechnung_3.0.1_2023-09-22.zip`
8 changes: 4 additions & 4 deletions build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

<!-- Naming -->
<property name="xrechnung.version.major.minor" value="3.0" />
<property name="xrechnung.version.patch" value="0" />
<property name="xrechnung.version.patch" value="1" />
<property name="xrechnung.version"
value="${xrechnung.version.major.minor}.${xrechnung.version.patch}" />
<property name="cen.spec.id" value="urn:cen.eu:en16931:2017" />
Expand All @@ -28,7 +28,7 @@
<property name="xrechnung.extension.id"
value="${xrechnung.spec.id}#conformant#urn:xeinkauf.de:kosit:extension:xrechnung_${xrechnung.version.major.minor}" />

<property name="validator.configuration.version.full" value="2023-10-31-SNAPSHOT" />
<property name="validator.configuration.version.full" value="2023-09-22" />
<property name="dist.name"
value="validator-configuration-xrechnung_${xrechnung.version}_${validator.configuration.version.full}.zip" />
<!-- 3rd party resources -->
Expand Down Expand Up @@ -77,7 +77,7 @@

<!-- XRechnung Schematron Rules section -->
<property name="xr.schematron.version.major.minor" value="2.0" />
<property name="xr.schematron.version.patch" value="0" />
<property name="xr.schematron.version.patch" value="1" />
<property name="xr.schematron.version.full"
value="${xr.schematron.version.major.minor}.${xr.schematron.version.patch}" />

Expand All @@ -87,7 +87,7 @@
value="xrechnung-${xrechnung.version}-schematron-${xr.schematron.version.full}.zip" />
<property name="xr.schematron.download.url" value="${xr.schematron.download.url.prefix}/${xr.schematron.zip}" />

<property name="xr.testsuite.version" value="2023-07-31" />
<property name="xr.testsuite.version" value="2023-09-22" />
<property name="xr.testsuite.download.url.prefix"
value="https://github.com/itplr-kosit/xrechnung-testsuite/releases/download" />

Expand Down
6 changes: 3 additions & 3 deletions docs/development.md
Original file line number Diff line number Diff line change
Expand Up @@ -203,15 +203,15 @@ If you want to skip tests call `ant dist-only`.
```

* Tag the last commit according to the following naming rule:
`release-${date-of-scheduled-release-e.g. 2023-07-31}`
`release-${date-of-scheduled-release-e.g. 2023-09-22}`
e.g.
`git tag release-2023-07-31 && git push origin release-2023-07-31`
`git tag release-2023-09-22 && git push origin release-2023-09-22`

### Publish

* Draft a new release at https://github.com/itplr-kosit/validator-configuration-xrechnung/releases/new
* Choose the git tag
* Add a release title of the following scheme: `Validator Configuration 2023-07-31 compatible with XRechnung 3.0.x`.
* Add a release title of the following scheme: `Validator Configuration 2023-09-22 compatible with XRechnung 3.0.x`.
* Copy & paste the high quality changelog entries for this release from CHANGELOG.md.
* Upload distribution zip and tick mark this release as a `pre-release`.

Expand Down
4 changes: 2 additions & 2 deletions docs/usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ In an empty directory:
# download validator
curl -L "https://github.com/itplr-kosit/validator/releases/download/v1.5.0/validator-1.5.0-distribution.zip" --output validator.zip

# download configuration (for 3.0.0)
curl -L "https://github.com/itplr-kosit/validator-configuration-xrechnung/releases/download/release-2023-07-31/validator-configuration-xrechnung_3.0.0_2023-07-31.zip" --output validator-configuration.zip
# download configuration (for 3.0.1)
curl -L "https://github.com/itplr-kosit/validator-configuration-xrechnung/releases/download/release-2023-09-22/validator-configuration-xrechnung_3.0.1_2023-09-22.zip" --output validator-configuration.zip

# download one most recent test document
curl -L "https://raw.githubusercontent.com/itplr-kosit/xrechnung-testsuite/master/src/test/business-cases/standard/01.01a-INVOICE_ubl.xml" --output ubl.xml
Expand Down

0 comments on commit 323a65d

Please sign in to comment.