Skip to content

Commit

Permalink
Merge pull request #6 from stac-extensions/update-from-template
Browse files Browse the repository at this point in the history
Update from template
  • Loading branch information
constantinius authored Aug 23, 2024
2 parents 4dc160a + 1a45407 commit bd2ac0a
Show file tree
Hide file tree
Showing 12 changed files with 356 additions and 133 deletions.
13 changes: 0 additions & 13 deletions .github/pull_request_template.md

This file was deleted.

6 changes: 4 additions & 2 deletions .github/remark.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
plugins:
# GitHub Flavored Markdown
- remark-gfm
# Check links
- validate-links
# Apply some recommended defaults for consistency
Expand All @@ -8,6 +10,7 @@ plugins:
# General formatting
- - remark-lint-emphasis-marker
- '*'
- remark-lint-no-undefined-references
- remark-lint-hard-break-spaces
- remark-lint-blockquote-indentation
- remark-lint-no-consecutive-blank-lines
Expand All @@ -21,7 +24,6 @@ plugins:
- 'fenced'
# Headings
- remark-lint-heading-increment
- remark-lint-no-duplicate-headings
- remark-lint-no-multiple-toplevel-headings
- remark-lint-no-heading-punctuation
- - remark-lint-maximum-heading-length
Expand All @@ -38,7 +40,7 @@ plugins:
- - remark-lint-unordered-list-marker-style
- '-'
- - remark-lint-list-item-indent
- space
- space
# Tables
- remark-lint-table-pipes
- remark-lint-no-literal-urls
8 changes: 4 additions & 4 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Inject env variables
uses: rlespinasse/github-slug-action@v3.x
- uses: actions/checkout@v2
uses: rlespinasse/github-slug-action@v4.4.1
- uses: actions/checkout@v4
- name: deploy JSON Schema for version ${{ env.GITHUB_REF_SLUG }}
uses: peaceiris/actions-gh-pages@v3
uses: peaceiris/actions-gh-pages@v3.9.3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: json-schema
destination_dir: ${{ env.GITHUB_REF_SLUG }}
destination_dir: ${{ env.GITHUB_REF_SLUG }}
4 changes: 2 additions & 2 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-node@v2
- uses: actions/setup-node@v3
with:
node-version: 'lts/*'
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- run: |
npm install
npm test
14 changes: 12 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,12 @@
/package-lock.json
/node_modules
# OS files
.DS_Store
Thumbs.db

# Editors
/.idea/
/.vscode/

# Node / npm
.npm
/node_modules/
package-lock.json
1 change: 0 additions & 1 deletion .remarkignore

This file was deleted.

13 changes: 6 additions & 7 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,14 @@ All notable changes to this project will be documented in this file.
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]
## [v1.0.0]

### Added

- Added descrption of extension in the Readme
- Initial json-schema for tiled-assets
- Examples for tiled assed and assets with dimensions

### Changed

### Deprecated
Expand All @@ -16,9 +20,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Fixed

[Unreleased]: <https://github.com/stac-extensions/template/compare/v1.0.0...HEAD>

## [v1.0.0-beta.1] - 2020-05-29

### Added
- [Tiled Assets extension](extensions/tiled-assets/README.md), for representing data that has been split into tiles
[v1.0.0]: <https://github.com/stac-extensions/tiled-assets/compare/v1.0.0...HEAD>
145 changes: 88 additions & 57 deletions README.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion examples/example-tiled-assets-dimension.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"stac_version": "1.0.0-rc.1",
"stac_version": "1.0.0",
"stac_extensions": [
"https://stac-extensions.github.io/tiled-assets/v1.0.0/schema.json",
"https://stac-extensions.github.io/eo/v1.0.0/schema.json"
Expand Down
2 changes: 1 addition & 1 deletion examples/example-tiled-assets-tiled.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"stac_version": "1.0.0-rc.1",
"stac_version": "1.0.0",
"stac_extensions": [
"https://stac-extensions.github.io/tiled-assets/v1.0.0/schema.json",
"https://stac-extensions.github.io/eo/v1.0.0/schema.json"
Expand Down
Loading

0 comments on commit bd2ac0a

Please sign in to comment.