-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1d66f18
commit 8c423d2
Showing
3 changed files
with
52 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
# Changelog | ||
|
||
All notable changes to this project will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) | ||
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). | ||
|
||
<!-- insertion marker --> | ||
## [v1.3.10](https://github.com/datashades/ckanext-harvest-basket/releases/tag/v1.3.10) - 2024-10-30 | ||
|
||
<small>[Compare with v1.3.9](https://github.com/datashades/ckanext-harvest-basket/compare/v1.3.9...v1.3.10)</small> | ||
|
||
### Features | ||
|
||
- add CSIRO harvester ([5b12edc](https://github.com/datashades/ckanext-harvest-basket/commit/5b12edc9e50d043f705b003141ec52626aa720f5) by Sergey Motornyuk). | ||
- add fq parameter to ckan harvester ([c07e535](https://github.com/datashades/ckanext-harvest-basket/commit/c07e535039db4a9a3d766c6ad2f4cd7c2cd0c72d) by Sergey Motornyuk). | ||
- ckan harvester supports named schema ([5183a76](https://github.com/datashades/ckanext-harvest-basket/commit/5183a768ef3346ab16bb4c37d2d528ef55f98a7e) by Sergey Motornyuk). | ||
- CSW harvester ([b186952](https://github.com/datashades/ckanext-harvest-basket/commit/b186952d3455d76e50c8429138146528095b82e1) by Sergey Motornyuk). | ||
- add dcat-json harvester ([04a523b](https://github.com/datashades/ckanext-harvest-basket/commit/04a523bb35a59f67c21b819c04256ba2e3ae26eb) by Sergey Motornyuk). | ||
|
||
### Bug Fixes | ||
|
||
- ckanext-spatial is missing from requirements ([5e9e8ea](https://github.com/datashades/ckanext-harvest-basket/commit/5e9e8eaeede949324bf6443ec8965a44f27035cd) by Sergey Motornyuk). | ||
|
||
## [v1.3.9](https://github.com/datashades/ckanext-harvest-basket/releases/tag/v1.3.9) - 2024-07-21 | ||
|
||
<small>[Compare with v1.3.8](https://github.com/datashades/ckanext-harvest-basket/compare/v1.3.8...v1.3.9)</small> | ||
|
||
## [v1.3.8](https://github.com/datashades/ckanext-harvest-basket/releases/tag/v1.3.8) - 2024-07-16 | ||
|
||
<small>[Compare with v1.3.7](https://github.com/datashades/ckanext-harvest-basket/compare/v1.3.7...v1.3.8)</small> | ||
|
||
## [v1.3.7](https://github.com/datashades/ckanext-harvest-basket/releases/tag/v1.3.7) - 2024-06-14 | ||
|
||
<small>[Compare with first commit](https://github.com/datashades/ckanext-harvest-basket/compare/b6f0981ad1107de8dbb280b02bfc3226b857f2b9...v1.3.7)</small> | ||
|
||
### Bug Fixes | ||
|
||
- fix new_source_form.html ([1098903](https://github.com/datashades/ckanext-harvest-basket/commit/1098903d69ecc369b59e4f3ae3b7f8b0fd0721a7) by mutantsan). | ||
- fix building ids for datasets ([3ccd755](https://github.com/datashades/ckanext-harvest-basket/commit/3ccd7551ac666cc8620e557755906c4a20d39120) by Oleksandr Cherniavskyi). | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
.DEFAULT_GOAL := help | ||
.PHONY = help | ||
|
||
help: | ||
@grep -E '^[a-zA-Z_-]+:.*?## .*$$$$' $$(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-20s\033[0m %s\n", $$$$1, $$$$2}' | ||
|
||
|
||
changelog: ## compile changelog | ||
git changelog -c conventional -o CHANGELOG.md $(if $(bump),-B $(bump)) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" | |
|
||
[project] | ||
name = "ckanext-harvest-basket" | ||
version = "1.3.73" | ||
version = "1.3.10" | ||
description = "A bunch of custom harvesters for ckanext-harvest" | ||
authors = [ | ||
{name = "DataShades", email = "[email protected]"}, | ||
|