From 05df338fea93d5ef2c752add9f52b1eb351ddaf4 Mon Sep 17 00:00:00 2001 From: Ryuzo Yamamoto Date: Mon, 6 Apr 2026 12:00:11 +0900 Subject: [PATCH 1/4] fix: update crate name in docs and README --- README.md | 2 +- src/lib.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a2e9c98..10bb53f 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ A Rust connector for [Google Cloud SQL](https://cloud.google.com/sql). Provides ## Usage ```rust -use cloud_sql_connector::{CloudSqlConfig, CloudSqlConnector}; +use cloudsqlconn::{CloudSqlConfig, CloudSqlConnector}; let config = CloudSqlConfig::new("my-project:us-central1:my-instance") .with_iam_auth(true); diff --git a/src/lib.rs b/src/lib.rs index 5caa5ed..11ca4de 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -6,7 +6,7 @@ //! ## Usage //! //! ```rust,no_run -//! use cloud_sql_connector::{CloudSqlConnector, CloudSqlConfig, IpType}; +//! use cloudsqlconn::{CloudSqlConnector, CloudSqlConfig, IpType}; //! use std::sync::Arc; //! use std::time::Duration; //! From 5847318bb0b2b5b6d7ba683fc6704d65e6594616 Mon Sep 17 00:00:00 2001 From: Ryuzo Yamamoto Date: Mon, 6 Apr 2026 12:01:22 +0900 Subject: [PATCH 2/4] fix: update crate name in integration test --- tests/integration_test.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration_test.rs b/tests/integration_test.rs index 38953b6..88da95c 100644 --- a/tests/integration_test.rs +++ b/tests/integration_test.rs @@ -32,7 +32,7 @@ // TEST_CLOUD_SQL_IP_TYPE=public \ // cargo test --package cloud-sql-connector --test integration_test -use cloud_sql_connector::{CloudSqlConfig, CloudSqlConnector, IpType}; +use cloudsqlconn::{CloudSqlConfig, CloudSqlConnector, IpType}; use std::env; use std::sync::{Arc, Once}; From 716ca3d323309527dd24848ebf28627afa7dff2a Mon Sep 17 00:00:00 2001 From: Ryuzo Yamamoto Date: Mon, 6 Apr 2026 12:02:26 +0900 Subject: [PATCH 3/4] chore: bump version to 0.1.1 --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 5cddd70..e0dffa1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cloudsqlconn" -version = "0.1.0" +version = "0.1.1" edition = "2024" description = "Cloud SQL connector for Rust" license = "MIT" From a99b19845fd99cda685372851304d3112f6eeaa0 Mon Sep 17 00:00:00 2001 From: Ryuzo Yamamoto Date: Mon, 6 Apr 2026 12:47:31 +0900 Subject: [PATCH 4/4] chore: update README heading to crates.io name --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 10bb53f..d64a769 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# cloud-sql-connector +# cloudsqlconn A Rust connector for [Google Cloud SQL](https://cloud.google.com/sql). Provides secure, authenticated connections to Cloud SQL instances using IAM authentication and automatic certificate management.