Skip to content

Commit efb6e9d

Browse files
committed
Use yaml instead of yml
1 parent 29667fe commit efb6e9d

File tree

8 files changed

+17
-14
lines changed

8 files changed

+17
-14
lines changed

CHANGELOG.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,14 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
2727

2828
- ...
2929

30-
## [v0.0.1] - 2024-02-15
30+
## [v0.0.2] - 2024-02-14
31+
32+
- Use .yaml instead of .yml
33+
34+
## [v0.0.1] - 2024-02-14
3135

3236
- First release
3337

34-
[Unreleased]: <https://github.com/radiantearth/stac-spec/compare/v0.0.1...main>
38+
[Unreleased]: <https://github.com/radiantearth/stac-spec/compare/v0.0.2...main>
39+
[v0.0.2]: <https://github.com/radiantearth/stac-spec/compare/v0.0.1...v0.0.2>
3540
[v0.0.1]: <https://github.com/radiantearth/stac-spec/tree/v0.0.1>

CITATION.cff

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ preferred-citation:
88
type: standard
99
title: "Field Boundaries for Agriculture (fiboa) specification"
1010
abstract: "Making field boundaries openly available in a unified way."
11-
version: 0.0.1
11+
version: 0.0.2
1212
year: 2024
13-
date-released: 2024-03-01
13+
date-released: 2024-02-15
1414
license: Apache-2.0
1515
url: https://github.com/fiboa
1616
repository: https://github.com/fiboa/specification

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
> Making field boundaries openly available in a unified way.
44
5-
**Version:** 0.0.1
5+
**Version:** 0.0.2
66

77
**NOTE:** Most of the content in this repository is still placeholder while
88
we are developing the specification.

core/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Core Specification
22

3-
- **Schema:** <https://fiboa.github.io/specification/v0.0.1/schema.yml>
3+
- **Schema:** <https://fiboa.github.io/specification/v0.0.2/schema.yaml>
44

55
**NOTE: The Core Specification is still work in progress.**
66

geojson/examples/collection.json

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
{
2-
"fiboa_version": "0.0.1",
3-
"fiboa_extensions": [
4-
"https://example.com/fiboa/0.0.1/schema.yml"
5-
],
2+
"fiboa_version": "0.0.2",
3+
"fiboa_extensions": [],
64
"stac_version": "1.0.0",
75
"type": "Collection",
86
"id": "fiboa",

geojson/schema/datatypes.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"$schema": "https://json-schema.org/draft/2020-12/schema",
3-
"$id": "https://fiboa.example/v0.0.1/geojson/datatypes.json",
3+
"$id": "https://fiboa.example/v0.0.2/geojson/datatypes.json",
44
"$defs": {
55
"boolean": {
66
"type": "boolean"

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
22
"name": "fiboa-specification",
3-
"version": "0.0.1",
3+
"version": "0.0.2",
44
"scripts": {
55
"test": "npm run check-docs && npm run check-geojson-examples && npm run check-geoparquet-examples",
66
"check-geojson-examples": "fiboa-geojson-validator validate geojson/examples -c geojson/examples/collection.json",
77
"init": "pip install fiboa_parquet",
88
"check-geoparquet-examples": "fiboa_parquet validate geoparquet/examples/example.parquet",
99
"generate-geoparquet-examples": "fiboa_parquet create geojson/examples -o geoparquet/examples/example.parquet",
1010
"check-docs": "remark . -f -r .github/.remarkrc",
11-
"create-json-schema": "fiboa-geojson-validator create-schema core/schema/schema.yml -o geojson/schema/schema.json"
11+
"create-json-schema": "fiboa-geojson-validator create-schema core/schema/schema.yaml -o geojson/schema/schema.json"
1212
},
1313
"repository": {
1414
"type": "git",
@@ -21,7 +21,7 @@
2121
},
2222
"homepage": "https://github.com/fiboa/specification",
2323
"devDependencies": {
24-
"@fiboa/geojson-validator": "^0.1.0",
24+
"@fiboa/geojson-validator": "^0.1.2",
2525
"remark-cli": "^12.0.0",
2626
"remark-gfm": "^4.0.0",
2727
"remark-lint": "^9.1.2",

0 commit comments

Comments
 (0)