Skip to content

Commit 31549b9

Browse files
authored
Merge pull request apache#333 from andygrove/update-cargo-toml
Update links to reflect repository move to sqlparser-rs GitHub org
2 parents 2d04266 + 9c9d929 commit 31549b9

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
Given that the parser produces a typed AST, any changes to the AST will technically be breaking and thus will result in a `0.(N+1)` version. We document changes that break via addition as "Added".
77

88
## [Unreleased]
9-
Check https://github.com/ballista-compute/sqlparser-rs/commits/main for undocumented changes.
9+
Check https://github.com/sqlparser-rs/sqlparser-rs/commits/main for undocumented changes.
1010

1111

1212
## [0.9.0] 2020-03-21

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ name = "sqlparser"
33
description = "Extensible SQL Lexer and Parser with support for ANSI SQL:2011"
44
version = "0.9.1-alpha.0"
55
authors = ["Andy Grove <[email protected]>"]
6-
homepage = "https://github.com/ballista-compute/sqlparser-rs"
6+
homepage = "https://github.com/sqlparser-rs/sqlparser-rs"
77
documentation = "https://docs.rs/sqlparser/"
88
keywords = [ "ansi", "sql", "lexer", "parser" ]
9-
repository = "https://github.com/ballista-compute/sqlparser-rs"
9+
repository = "https://github.com/sqlparser-rs/sqlparser-rs"
1010
license = "Apache-2.0"
1111
include = [
1212
"src/**/*.rs",

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
44
[![Version](https://img.shields.io/crates/v/sqlparser.svg)](https://crates.io/crates/sqlparser)
5-
[![Build Status](https://github.com/ballista-compute/sqlparser-rs/workflows/Rust/badge.svg?branch=main)](https://github.com/ballista-compute/sqlparser-rs/actions?query=workflow%3ARust+branch%3Amain)
6-
[![Coverage Status](https://coveralls.io/repos/github/ballista-compute/sqlparser-rs/badge.svg?branch=main)](https://coveralls.io/github/ballista-compute/sqlparser-rs?branch=main)
5+
[![Build Status](https://github.com/sqlparser-rs/sqlparser-rs/workflows/Rust/badge.svg?branch=main)](https://github.com/sqlparser-rs/sqlparser-rs/actions?query=workflow%3ARust+branch%3Amain)
6+
[![Coverage Status](https://coveralls.io/repos/github/sqlparser-rs/sqlparser-rs/badge.svg?branch=main)](https://coveralls.io/github/sqlparser-rs/sqlparser-rs?branch=main)
77
[![Gitter Chat](https://badges.gitter.im/sqlparser-rs/community.svg)](https://gitter.im/sqlparser-rs/community?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
88

99
The goal of this project is to build a SQL lexer and parser capable of parsing
@@ -123,10 +123,10 @@ resources.
123123

124124
[tdop-tutorial]: https://eli.thegreenplace.net/2010/01/02/top-down-operator-precedence-parsing
125125
[`cargo fmt`]: https://github.com/rust-lang/rustfmt#on-the-stable-toolchain
126-
[current issues]: https://github.com/ballista-compute/sqlparser-rs/issues
126+
[current issues]: https://github.com/sqlparser-rs/sqlparser-rs/issues
127127
[DataFusion]: https://github.com/apache/arrow-datafusion
128128
[LocustDB]: https://github.com/cswinter/LocustDB
129-
[Ballista]: https://github.com/ballista-compute/ballista
129+
[Ballista]: https://github.com/apache/arrow-datafusion/tree/master/ballista
130130
[Pratt Parser]: https://tdop.github.io/
131131
[sql-2016-grammar]: https://jakewheat.github.io/sql-overview/sql-2016-foundation-grammar.html
132132
[sql-standard]: https://en.wikipedia.org/wiki/ISO/IEC_9075

docs/releasing.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## Prerequisites
44
Publishing to crates.io has been automated via GitHub Actions, so you will only
5-
need push access to the [ballista-compute GitHub repository](https://github.com/ballista-compute/sqlparser-rs)
5+
need push access to the [sqlparser-rs GitHub repository](https://github.com/sqlparser-rs/sqlparser-rs)
66
in order to publish a release.
77

88
We use the [`cargo release`](https://github.com/sunng87/cargo-release)
@@ -41,7 +41,7 @@ $ cargo install cargo-release
4141
* Create a new tag (e.g. `v0.8.0`) locally
4242
* Push the new tag to the specified remote (`upstream` in the above
4343
example), which will trigger a publishing process to crates.io as part of
44-
the [corresponding GitHub Action](https://github.com/ballista-compute/sqlparser-rs/blob/main/.github/workflows/rust.yml).
44+
the [corresponding GitHub Action](https://github.com/sqlparser-rs/sqlparser-rs/blob/main/.github/workflows/rust.yml).
4545
4646
Note that credentials for authoring in this way are securely stored in
4747
the (GitHub) repo secrets as `CRATE_TOKEN`.

tests/sqlparser_common.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3295,7 +3295,7 @@ fn parse_start_transaction() {
32953295
verified_stmt("START TRANSACTION ISOLATION LEVEL REPEATABLE READ");
32963296
verified_stmt("START TRANSACTION ISOLATION LEVEL SERIALIZABLE");
32973297

3298-
// Regression test for https://github.com/ballista-compute/sqlparser-rs/pull/139,
3298+
// Regression test for https://github.com/sqlparser-rs/sqlparser-rs/pull/139,
32993299
// in which START TRANSACTION would fail to parse if followed by a statement
33003300
// terminator.
33013301
assert_eq!(

tests/sqlparser_postgres.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ fn parse_create_table_with_inherit() {
233233
#[test]
234234
fn parse_create_table_empty() {
235235
// Zero-column tables are weird, but supported by at least PostgreSQL.
236-
// <https://github.com/ballista-compute/sqlparser-rs/pull/94>
236+
// <https://github.com/sqlparser-rs/sqlparser-rs/pull/94>
237237
let _ = pg_and_generic().verified_stmt("CREATE TABLE t ()");
238238
}
239239

0 commit comments

Comments
 (0)