Skip to content

Commit

Permalink
Update GitHub URL
Browse files Browse the repository at this point in the history
  • Loading branch information
theory committed Apr 15, 2024
1 parent e42c8a8 commit 222a8fe
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/lint-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
slug: tembo-io/pg-jsonschema
slug: tembo-io/pg-jsonschema-boon
files: target/cover/cobertura.xml
- name: Remove Data Diretory
run: rm -rf target/pgrx-test-data-${{ env.PGVERSION }}
Expand Down
12 changes: 6 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,11 @@ The theme of this release is *learning Rust and pgrx.*
* Performance [benchmark script]
* Multi-schema [composition example]

[v0.1.0]: https://github.com/tembo-io/pg-jsonschema/compare/34d5d49...HEAD
[v0.1.0]: https://github.com/tembo-io/pg-jsonschema-boon/compare/34d5d49...HEAD
[boon]: https://github.com/santhosh-tekuri/boon
[README]: https://github.com/tembo-io/pg-jsonschema/blob/v0.1.0/README.md
[README]: https://github.com/tembo-io/pg-jsonschema-boon/blob/v0.1.0/README.md
[PGXN]: https://pgxn.org/dist/jsonschema/
[GitHub]: https://github.com/tembo-io/pg-jsonschema/releases
[reference documentation]: https://github.com/tembo-io/pg-jsonschema/blob/v0.1.0/doc/jsonschema.md
[benchmark script]: https://github.com/tembo-io/pg-jsonschema/blob/v0.1.0/eg/bench.sql
[composition example]: https://github.com/tembo-io/pg-jsonschema/blob/v0.1.0/eg/user.sql
[GitHub]: https://github.com/tembo-io/pg-jsonschema-boon/releases
[reference documentation]: https://github.com/tembo-io/pg-jsonschema-boon/blob/v0.1.0/doc/jsonschema.md
[benchmark script]: https://github.com/tembo-io/pg-jsonschema-boon/blob/v0.1.0/eg/bench.sql
[composition example]: https://github.com/tembo-io/pg-jsonschema-boon/blob/v0.1.0/eg/user.sql
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "jsonschema"
version = "0.1.0"
description = "JSONSchema validation in Postgres"
readme = "README.md"
repository = "https://github.com/tembo-io/pg-jsonschema"
repository = "https://github.com/tembo-io/pg-jsonschema-boon"
authors = ["David E. Wheeler <[email protected]>"]
keywords = ["jsonschema", "validation", "postgres", "extension", "database", "pgrx"]
license = "MIT"
Expand Down
6 changes: 3 additions & 3 deletions META.json.in
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@
},
"resources": {
"bugtracker": {
"web": "https://github.com/tembo-io/pg-jsonschema/issues/"
"web": "https://github.com/tembo-io/pg-jsonschema-boon/issues/"
},
"repository": {
"url": "git://github.com/tembo-io/pg-jsonschema.git",
"web": "https://github.com/tembo-io/pg-jsonschema/",
"url": "git://github.com/tembo-io/pg-jsonschema-boon.git",
"web": "https://github.com/tembo-io/pg-jsonschema-boon/",
"type": "git"
}
},
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ $(DISTNAME)-$(DISTVERSION).zip: META.json
pgxn-zip: $(DISTNAME)-$(DISTVERSION).zip

target/release-notes.md: CHANGELOG.md .ci/mknotes
@./.ci/mknotes -v $(DISTVERSION) -f $< -r https://github.com/$(or $(GITHUB_REPOSITORY),tembo-io/pg-jsonschema) -o $@
@./.ci/mknotes -v $(DISTVERSION) -f $< -r https://github.com/$(or $(GITHUB_REPOSITORY),tembo-io/pg-jsonschema-boon) -o $@

## vendor: Vendor all crates.io and git dependencies.
vendor:
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ JSON Schema Postgres Extension

[![MIT License](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT "⚖️ MIT License")
[![PGXN Version](https://badge.fury.io/pg/jsonschema.svg)](https://badge.fury.io/pg/jsonschema "⚙️ PGXN Version")
[![Build Status](https://github.com/tembo-io/pg-jsonschema/actions/workflows/lint-and-test.yml/badge.svg)](https://github.com/tembo-io/pg-jsonschema/actions/workflows/lint-and-test.yml "🧪 Lint and Test")
[![Code Coverage](https://codecov.io/gh/tembo-io/pg-jsonschema/graph/badge.svg?token=DIFED324ZY)](https://codecov.io/gh/tembo-io/pg-jsonschema "📊 Code Coverage")
[![Build Status](https://github.com/tembo-io/pg-jsonschema-boon/actions/workflows/lint-and-test.yml/badge.svg)](https://github.com/tembo-io/pg-jsonschema-boon/actions/workflows/lint-and-test.yml "🧪 Lint and Test")
[![Code Coverage](https://codecov.io/gh/tembo-io/pg-jsonschema-boon/graph/badge.svg?token=DIFED324ZY)](https://codecov.io/gh/tembo-io/pg-jsonschema-boon "📊 Code Coverage")

**[Change Log](CHANGELOG.md)** | **[Documentation](doc/jsonschema.md)**

Expand Down
6 changes: 3 additions & 3 deletions doc/jsonschema.md
Original file line number Diff line number Diff line change
Expand Up @@ -455,8 +455,8 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

[JSON Schema]: https://json-schema.org
[GitHub repository]: https://github.com/tembo-io/pg-jsonschema
[GitHub Issues]: https://github.com/tembo-io/pg-jsonschema/issues/
[GitHub repository]: https://github.com/tembo-io/pg-jsonschema-boon
[GitHub Issues]: https://github.com/tembo-io/pg-jsonschema-boon/issues/
[spec]: https://json-schema.org/specification
[draft 4 badge]: https://img.shields.io/endpoint?url=https://bowtie.report/badges/rust-boon/compliance/draft4.json
[draft 4 report]: https://bowtie.report/#/dialects/draft4 "boon draft 4 report"
Expand All @@ -472,7 +472,7 @@ SOFTWARE.
[2020-12 draft]: https://json-schema.org/draft/2020-12/release-notes "JSON Schema: 2020-12 Release Notes"
[composition]: https://json-schema.org/understanding-json-schema/structuring
"JSON Schema: Structuring a complex schema"
[simple test]: https://github.com/tembo-io/pg-jsonschema/#benchmark
[simple test]: https://github.com/tembo-io/pg-jsonschema-boon/#benchmark
[psql]: https://www.postgresql.org/docs/current/app-psql.html "PostgreSQL Docs: psql"
[bundle]: https://json-schema.org/understanding-json-schema/structuring#bundling
[`$schema` field]: https://json-schema.org/draft/2020-12/json-schema-core#name-the-schema-keyword
Expand Down

0 comments on commit 222a8fe

Please sign in to comment.