Skip to content

Commit

Permalink
Replace some instances of CoreDB to Tembo
Browse files Browse the repository at this point in the history
  • Loading branch information
vrmiguel committed Jul 25, 2023
1 parent 6a30cd9 commit b2652e4
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/extension_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -118,4 +118,4 @@ jobs:
pgmq_ver=$(stoml Cargo.toml package.version)
pgmq_descr=$(stoml Cargo.toml package.description)
pgmq_repo=$(stoml Cargo.toml package.repository)
trunk publish pgmq --version ${pgmq_ver} --file .trunk/pgmq-${pgmq_ver}.tar.gz --description "Message Queue for postgres" --homepage "https://github.com/CoreDB-io/coredb/pgmq" --repository "https://github.com/CoreDB-io/coredb/pgmq" --license "Apache-2.0"
trunk publish pgmq --version ${pgmq_ver} --file .trunk/pgmq-${pgmq_ver}.tar.gz --description "Message Queue for postgres" --homepage "https://github.com/tembo-io/pgmq" --repository "https://github.com/tembo-io/pgmq" --license "Apache-2.0"
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ cargo pgrx init
Then, clone this repo and change into this directory.

```bash
git clone [email protected]:CoreDB-io/coredb.git
git clone git@https://github.com/tembo-io/pgmq.git
cd coredb/extensions/pgmq/
```

Expand Down
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
name = "pgmq"
version = "0.10.0"
edition = "2021"
authors = ["CoreDB.io"]
authors = ["Tembo.io"]
description = "Postgres extension for PGMQ"
homepage = "https://www.coredb.io"
homepage = "https://www.tembo.io"
license = "MIT"
readme = "README.md"
repository = "https://github.com/CoreDB-io/coredb"
repository = "https://github.com/tembo-io/pgmq/"
publish = false

[lib]
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ docker run -d --name postgres -e POSTGRES_PASSWORD=postgres -p 5432:5432 quay.io
## Client Libraries


- [Rust](https://github.com/CoreDB-io/coredb/tree/main/pgmq/core)
- [Python](https://github.com/CoreDB-io/coredb/tree/main/pgmq/coredb-pgmq-python)
- [Rust](https://github.com/tembo-io/pgmq/tree/main/core)
- [Python](https://github.com/tembo-io/pgmq/tree/main/tembo-pgmq-python)

## SQL Examples

Expand Down
2 changes: 1 addition & 1 deletion core/LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@
same "printed page" as the copyright notice for easier
identification within third-party archives.

Copyright 2023 CoreDB, Inc.
Copyright 2023 Tembo, Inc.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
4 changes: 2 additions & 2 deletions core/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ Message queues allow you to decouple and connect microservices.
Send, store, and receive messages between components scalably, without dropping messages or
needing other services to be available.

PGMQ was created by CoreDB. Our goal is to make the full Postgres ecosystem accessible to everyone.
PGMQ was created by [Tembo](https://tembo.io/). Our goal is to make the full Postgres ecosystem accessible to everyone.
We're building a radically simplified Postgres platform designed to be developer-first and easily extensible.
PGMQ is a part of that project.

Not building in Rust? Try the [CoreDB pgmq Postgres extension](https://github.com/CoreDB-io/coredb/tree/main/extensions/pgmq).
Not building in Rust? Try the [Tembo pgmq Postgres extension](https://pgt.dev/extensions/pgmq).

## Features

Expand Down
4 changes: 2 additions & 2 deletions core/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@
//! Send, store, and receive messages between components scalably, without dropping messages or
//! needing other services to be available.
//!
//! PGMQ was created by CoreDB. Our goal is to make the full Postgres ecosystem accessible to everyone.
//! PGMQ was created by Tembo. Our goal is to make the full Postgres ecosystem accessible to everyone.
//! We're building a radically simplified Postgres platform designed to be developer-first and easily extensible.
//! PGMQ is a part of that project.
//!
//! Not building in Rust? Try the [CoreDB pgmq Postgres extension](https://github.com/CoreDB-io/coredb/tree/main/extensions/pgmq).
//! Not building in Rust? Try the [CoreDB pgmq Postgres extension](https://pgt.dev/extensions/pgmq).
//!
//! ## Features
//!
Expand Down

0 comments on commit b2652e4

Please sign in to comment.