Skip to content

Commit

Permalink
Release Version 2.9.5 (#337)
Browse files Browse the repository at this point in the history
* Fix DQ_CompletenessOmission Typo (#284)

* Fix Typo

DQ_CompletenessOmmission to DQ_CompletenessOmission

* Increment Patch Version

* 2.8.3

* Add DQ_NonQuantitativeAttributeAccuracy

* Release Version 2.9.0 (#289)

* Upgrade mdCodes

mdCodes -> 2.9.0

* Increment Ruby Version

v2.8.4

* Increment package.json Version

v2.8.4
Update package-lock.json

* Increment Patch Version

v2.8.4

* Update package-lock.json

* Replace bower.json

* Re-remove bower.json

* Increment Minor Version

* Upgrade mdCodes (#292)

* Update adiwg-json_schemas.gemspec and package.json versions to 2.9.1

* Update schema.json version to 2.9.1

* Update dataQualityReport.json schema

Remove DQ_ from report type names.

* Update dataQualityReport.json schema with translation descriptions for quality report types.

* Update dataQualityReport.json schema with corrected translation for quality report types.

* Upgrade adiwg-mdcodes to v2.9.2

* Add Gemfile.lock

Remove Gemfile.lock from .gitignore and add it.
Update mdCodes version to be exact.

* Update dataQualityReport.json

Fixed typo of FGDC

---------

Co-authored-by: Hilmar Maier <[email protected]>

* Fix Data Quality Enums (#325)

* Update dataQualityReport.json schema with corrected translation for quality report types

* chore: Update adiwg-mdjson_schemas to version 2.9.2-beta.5

* Update evaluationMethod.json schema with corrected enum values for evaluation method types

* chore: Update adiwg-mdcodes to version 2.9.3.pre.beta.3

* chore: Update adiwg-mdjson_schemas to version 2.9.2-beta.20

* Update dataQualityReport.json schema with corrected translation for quality report types

* chore: Update adiwg-mdjson_schemas and related files to version 2.9.2-beta.21

* Prepare for Release v2.9.2 (#328)

* chore: Update adiwg-mdjson_schemas and related files to version 2.9.2

* chore: Update adiwg-mdcodes to version 2.9.3

* Prepare release version 2.9.5 (#335)

* Fix DQ_CompletenessOmission Typo (#284) (#287)

* Fix Typo

DQ_CompletenessOmmission to DQ_CompletenessOmission

* Increment Patch Version

* 2.8.3

* Add DQ_NonQuantitativeAttributeAccuracy

* Squashed commit of the following:

commit f02a08c
Author: Johnathan <[email protected]>
Date:   Tue Feb 13 15:17:33 2024 -0700

    Release Version 2.9.0 (#289)

    * Upgrade mdCodes

    mdCodes -> 2.9.0

    * Increment Ruby Version

    v2.8.4

    * Increment package.json Version

    v2.8.4
    Update package-lock.json

    * Increment Patch Version

    v2.8.4

    * Update package-lock.json

    * Replace bower.json

    * Re-remove bower.json

    * Increment Minor Version

commit 5b598a0
Author: Johnathan <[email protected]>
Date:   Mon Feb 12 11:32:34 2024 -0700

    Fix DQ_CompletenessOmission Typo (#284)

    * Fix Typo

    DQ_CompletenessOmmission to DQ_CompletenessOmission

    * Increment Patch Version

    * 2.8.3

    * Add DQ_NonQuantitativeAttributeAccuracy

* chore: Update adiwg-mdjson_schemas and related files to version 2.9.2

* chore: Update adiwg-mdcodes to version 2.9.3

* chore: Update adiwg-mdcodes to version 2.9.4-beta.0 and adiwg-mdjson_schemas to version 2.9.3-beta.0

* chore: Update adiwg-mdcodes to version 2.9.4-beta.0 and adiwg-mdjson_schemas to version 2.9.3-beta.0

* Update dataQualityReport.json schema with corrected translation for quality report types

* chore: Update adiwg-mdcodes to version 2.9.4-beta.1 and adiwg-mdjson_schemas to version 2.9.3-beta.1

* Update dataQualityReport.json schema with corrected translation for quality report types

* chore: Update versions

mdCodes updated to 2.9.4-beta.4
mdJson-schemas updated to 2.9.3-beta.2

* Fix Data Quality Report Types

* chore: Increment beta version

* chore: Update adiwg-mdcodes and adiwg-mdjson_schemas versions to 2.9.4.pre.beta.5 and 2.9.3.pre.beta.5 respectively

* chore: Update adiwg-mdcodes and adiwg-mdjson_schemas versions to 2.10.0

---------

Co-authored-by: hmaier-fws <[email protected]>

* Add GitHub Actions workflow for automated release creation (#338)

* Add GitHub Actions workflow for automated deployment to GitHub Pages

* Rename action

* Add Node.js setup step to release workflow

---------

Co-authored-by: Hilmar Maier <[email protected]>
  • Loading branch information
jwaspin and hmaier-fws authored Dec 11, 2024
1 parent 09d6dc3 commit 71bd050
Show file tree
Hide file tree
Showing 8 changed files with 66 additions and 25 deletions.
41 changes: 41 additions & 0 deletions .github/workflows/create-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
name: Deploy to GitHub Pages

on:
push:
branches:
- master

jobs:
create-release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: "16"

- name: Create Tag
id: create_tag
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
# Read version from package.json
version=$(node -p "require('./package.json').version")
version_tag="v$version"
echo "Version from package.json: $version_tag"
echo "version=$version_tag" >> $GITHUB_OUTPUT
git tag $version_tag
git push origin $version_tag
- name: Create GitHub Release
uses: ncipollo/release-action@v1
with:
tag: ${{ steps.create_tag.outputs.version }}
name: Release ${{ steps.create_tag.outputs.version }}
body: Automated release for version ${{ steps.create_tag.outputs.version }}.
draft: false
prerelease: false
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6 changes: 3 additions & 3 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
PATH
remote: .
specs:
adiwg-mdjson_schemas (2.9.2)
adiwg-mdjson_schemas (2.9.5)

GEM
remote: https://rubygems.org/
specs:
addressable (2.8.6)
public_suffix (>= 2.0.2, < 6.0)
adiwg-mdcodes (2.9.3)
adiwg-mdcodes (2.10.0)
json (~> 2.0)
json (2.7.2)
json-schema (2.8.1)
Expand All @@ -21,7 +21,7 @@ PLATFORMS
arm64-darwin-22

DEPENDENCIES
adiwg-mdcodes (= 2.9.3)
adiwg-mdcodes (= 2.10.0)
adiwg-mdjson_schemas!
bundler (~> 2)
json-schema (~> 2.8.1)
Expand Down
2 changes: 1 addition & 1 deletion adiwg-json_schemas.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,5 @@ Gem::Specification.new do |spec|
spec.add_development_dependency "rake", ">= 0"
spec.add_development_dependency "json-schema", "~> 2.8.1"
spec.add_development_dependency "minitest", "~>5"
spec.add_development_dependency "adiwg-mdcodes", "2.9.3"
spec.add_development_dependency "adiwg-mdcodes", "2.10.0"
end
2 changes: 1 addition & 1 deletion lib/adiwg/mdjson_schemas/version.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module ADIWG
module MdjsonSchemas
# Current schema version number
VERSION = "2.9.2"
VERSION = "2.9.5"
end
end
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mdjson-schemas",
"version": "2.9.2",
"version": "2.9.5",
"description": "JSON schemas, examples, and templates for ADIwg metadata standards",
"main": "index.js",
"directories": {
Expand All @@ -10,7 +10,7 @@
},
"scripts": {
"test": "mocha",
"build": "npm install && npm run prepublish",
"build": "bundle && npm install && npm run prepublish",
"prepublish": "node scripts/prepublish.js",
"release": "npm run prepublish && npm publish"
},
Expand Down
30 changes: 15 additions & 15 deletions schema/dataQualityReport.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,21 +38,21 @@
"DCAT": ["no translation"]
},
"enum": [
"AbsolutePositionalAccuracy",
"RelativePositionalAccuracy",
"GriddedDataPositionalAccuracy",
"ConceptualConsistency",
"DomainConsistency",
"FormatConsistency",
"TopologicalConsistency",
"ThematicClassificationCorrectness",
"NonQuantitativeAttributeCorrectness",
"QuantitativeAttributeAccuracy",
"AccuracyOfATimeMeasurement",
"TemporalValidity",
"TemporalConsistency",
"Commission",
"Omission"
"DQ_AbsoluteExternalPositionalAccuracy",
"DQ_RelativeInternalPositionalAccuracy",
"DQ_GriddedDataPositionalAccuracy",
"DQ_ConceptualConsistency",
"DQ_DomainConsistency",
"DQ_FormatConsistency",
"DQ_TopologicalConsistency",
"DQ_ThematicClassificationCorrectness",
"DQ_NonQuantitativeAttributeCorrectness",
"DQ_QuantitativeAttributeAccuracy",
"DQ_AccuracyOfATimeMeasurement",
"DQ_TemporalValidity",
"DQ_TemporalConsistency",
"DQ_CompletenessCommission",
"DQ_CompletenessOmission"
]
},
"standaloneQualityReportDetails": {
Expand Down
2 changes: 1 addition & 1 deletion schema/schema.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "schema.json#",
"$schema": "http://json-schema.org/draft-04/schema#",
"version": "2.9.2",
"version": "2.9.5",
"description": "schema for ADIwg mdJSON metadata",
"example": "../examples/mdJson.json",
"type": "object",
Expand Down

0 comments on commit 71bd050

Please sign in to comment.