Skip to content

Commit

Permalink
Merge pull request #27 from cbdq-io/release/1.1.0
Browse files Browse the repository at this point in the history
Release/1.1.0
  • Loading branch information
dallinb authored Jul 1, 2024
2 parents d570555 + 07497b2 commit c1ba0b8
Show file tree
Hide file tree
Showing 75 changed files with 10,729 additions and 148 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
run: make lint

- name: Build
run: ./uk/gov/metoffice/historic_station_data/scripts/etl.py
run: make build

- name: Test
run: make test
42 changes: 41 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,47 @@
# Changelog


## 1.0.0
## 1.1.0

### New

* Add Great Expectations validation. [Ben Dalling]

* Add the created timestamp to the datapackage.json file. [Ben Dalling]

* Add the version to the datapackage.json file. [Ben Dalling]

* Add the GPL-3.0 licence. [Ben Dalling]

### Changes

* Updates to include data for 2024-06. [Ben Dalling]

* Migrate from Markdown to HTML for the DQ report. [Ben Dalling]

### Fix

* Give GX Metoffice checkpoint a more meaningful name. [Ben Dalling]

* Remove BSD-3-Cluase licence. [Ben Dalling]

### Other

* Build(deps): bump urllib3 from 2.2.1 to 2.2.2. [dependabot[bot]]

Bumps [urllib3](https://github.com/urllib3/urllib3) from 2.2.1 to 2.2.2.
- [Release notes](https://github.com/urllib3/urllib3/releases)
- [Changelog](https://github.com/urllib3/urllib3/blob/main/CHANGES.rst)
- [Commits](https://github.com/urllib3/urllib3/compare/2.2.1...2.2.2)

---
updated-dependencies:
- dependency-name: urllib3
dependency-type: direct:production
...


## 1.0.0 (2024-06-08)

### New

Expand Down
702 changes: 674 additions & 28 deletions LICENSE

Large diffs are not rendered by default.

9 changes: 6 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
.EXPORT_ALL_VARIABLES:

GIT_TAG = 1.0.0
GIT_TAG = 1.1.0

all: lint build test
all: lint avro build test

build:
avro:
make -C avro

build:
./uk/gov/metoffice/historic_station_data/scripts/etl.py
./gx.py -v

changelog:
GIT_TAG=$(GIT_TAG) gitchangelog > CHANGELOG.md
Expand Down
Loading

0 comments on commit c1ba0b8

Please sign in to comment.