Update links & copyright statement

This commit is contained in:
Thom Chiovoloni 2020-04-15 21:07:23 -07:00 committed by Thom Chiovoloni
parent 45fd77ee43
commit 9322b0e881
9 changed files with 14 additions and 13 deletions

View File

@ -1,10 +1,10 @@
[package]
name = "rusqlite"
version = "0.22.0"
authors = ["John Gallagher <jgallagher@bignerdranch.com>"]
authors = ["The rusqlite developers"]
edition = "2018"
description = "Ergonomic wrapper for SQLite"
repository = "https://github.com/jgallagher/rusqlite"
repository = "https://github.com/rusqlite/rusqlite"
documentation = "http://docs.rs/rusqlite/"
readme = "README.md"
keywords = ["sqlite", "database", "ffi"]
@ -12,8 +12,8 @@ license = "MIT"
categories = ["database"]
[badges]
travis-ci = { repository = "jgallagher/rusqlite" }
appveyor = { repository = "jgallagher/rusqlite" }
travis-ci = { repository = "rusqlite/rusqlite" }
appveyor = { repository = "rusqlite/rusqlite" }
maintenance = { status = "actively-developed" }
[lib]

View File

@ -1,4 +1,4 @@
For version 0.15.0 and above, see [Releases](https://github.com/jgallagher/rusqlite/releases) page.
For version 0.15.0 and above, see [Releases](https://github.com/rusqlite/rusqlite/releases) page.
# Version 0.14.0 (2018-08-17)

View File

@ -1,4 +1,4 @@
Copyright (c) 2014 John Gallagher <johnkgallagher@gmail.com>
Copyright (c) 2014-2020 The rusqlite developers
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal

View File

@ -188,7 +188,8 @@ instead.
## Author
John Gallagher, johnkgallagher@gmail.com
Rusqlite is the product of hard work by a number of people. A list is available
here: https://github.com/rusqlite/rusqlite/graphs/contributors
## License

View File

@ -1,9 +1,9 @@
[package]
name = "libsqlite3-sys"
version = "0.18.0"
authors = ["John Gallagher <jgallagher@bignerdranch.com>"]
authors = ["The rusqlite developers"]
edition = "2018"
repository = "https://github.com/jgallagher/rusqlite"
repository = "https://github.com/rusqlite/rusqlite"
description = "Native bindings to the libsqlite3 library"
license = "MIT"
links = "sqlite3"

View File

@ -247,7 +247,7 @@ mod build_linked {
// No env var set and pkg-config couldn't help; just output the link-lib
// request and hope that the library exists on the system paths. We used to
// output /usr/lib explicitly, but that can introduce other linking problems;
// see https://github.com/jgallagher/rusqlite/issues/207.
// see https://github.com/rusqlite/rusqlite/issues/207.
println!("cargo:rustc-link-lib={}={}", find_link_mode(), link_lib);
HeaderLocation::Wrapper
}

View File

@ -737,7 +737,7 @@ impl Connection {
/// # Warning
///
/// You should not need to use this function. If you do need to, please
/// [open an issue on the rusqlite repository](https://github.com/jgallagher/rusqlite/issues) and describe
/// [open an issue on the rusqlite repository](https://github.com/rusqlite/rusqlite/issues) and describe
/// your use case.
///
/// # Safety

View File

@ -1065,7 +1065,7 @@ mod test {
#[test]
fn test_insert_different_tables() {
// Test for https://github.com/jgallagher/rusqlite/issues/171
// Test for https://github.com/rusqlite/rusqlite/issues/171
let db = Connection::open_in_memory().unwrap();
db.execute_batch(
r"

View File

@ -174,7 +174,7 @@ impl VTabConnection {
/// # Warning
///
/// You should not need to use this function. If you do need to, please
/// [open an issue on the rusqlite repository](https://github.com/jgallagher/rusqlite/issues) and describe
/// [open an issue on the rusqlite repository](https://github.com/rusqlite/rusqlite/issues) and describe
/// your use case.
///
/// # Safety