diff --git a/SeaORM/versioned_docs/version-1.1.x/02-install-and-config/01-database-and-async-runtime.md b/SeaORM/versioned_docs/version-1.1.x/02-install-and-config/01-database-and-async-runtime.md index 040c8918f70..f74ae53c639 100644 --- a/SeaORM/versioned_docs/version-1.1.x/02-install-and-config/01-database-and-async-runtime.md +++ b/SeaORM/versioned_docs/version-1.1.x/02-install-and-config/01-database-and-async-runtime.md @@ -7,7 +7,7 @@ Thank you for using SeaORM. Please star our [GitHub repo](https://github.com/Sea First, add `sea-orm` to the `[dependencies]` section of `Cargo.toml`. ```toml title="Cargo.toml" -sea-orm = { version = "1.0.0-rc.5", features = [ , , "macros" ] } +sea-orm = { version = "1.1.0", features = [ , , "macros" ] } ``` You must choose a `DATABASE_DRIVER` and an `ASYNC_RUNTIME`. `macros` is needed if you use SeaORM's generated entities (most likely). diff --git a/SeaORM/versioned_docs/version-1.1.x/02-install-and-config/03-debug-log.md b/SeaORM/versioned_docs/version-1.1.x/02-install-and-config/03-debug-log.md index 4a68b6ba862..12be66e39cb 100644 --- a/SeaORM/versioned_docs/version-1.1.x/02-install-and-config/03-debug-log.md +++ b/SeaORM/versioned_docs/version-1.1.x/02-install-and-config/03-debug-log.md @@ -6,7 +6,7 @@ You can enable SeaORM's logging with the `debug-print` feature flag: ```toml [dependencies.sea-orm] -version = "1.0.0-rc.5" +version = "1.1.0" features = ["debug-print"] ``` diff --git a/SeaORM/versioned_docs/version-1.1.x/03-migration/01-setting-up-migration.md b/SeaORM/versioned_docs/version-1.1.x/03-migration/01-setting-up-migration.md index b5d79d81efe..2eeb37fb39f 100644 --- a/SeaORM/versioned_docs/version-1.1.x/03-migration/01-setting-up-migration.md +++ b/SeaORM/versioned_docs/version-1.1.x/03-migration/01-setting-up-migration.md @@ -32,7 +32,7 @@ impl MigratorTrait for Migrator { First, install `sea-orm-cli` with `cargo`. ```shell -cargo install sea-orm-cli@1.0.0-rc.5 +cargo install sea-orm-cli@1.1.0 ``` :::tip SQL Server (MSSQL) backend @@ -85,7 +85,7 @@ Import the [`sea-orm-migration`](https://crates.io/crates/sea-orm-migration) and async-std = { version = "1", features = ["attributes", "tokio1"] } [dependencies.sea-orm-migration] -version = "1.0.0-rc.5" +version = "1.1.0" features = [ # Enable at least one `ASYNC_RUNTIME` and `DATABASE_DRIVER` feature if you want to run migration via CLI. # View the list of supported features at https://www.sea-ql.org/SeaORM/docs/install-and-config/database-and-async-runtime. @@ -146,7 +146,7 @@ Specify SeaORM dependency. ```toml title="entity/Cargo.toml" [dependencies] -sea-orm = { version = "1.0.0-rc.5" } +sea-orm = { version = "1.1.0" } ``` ### App Crate @@ -166,7 +166,7 @@ entity = { path = "entity" } migration = { path = "migration" } # depends on your needs [dependencies] -sea-orm = { version = "1.0.0-rc.5", features = [..] } +sea-orm = { version = "1.1.0", features = [..] } ``` In your app, you can then run the migrator on startup. diff --git a/SeaORM/versioned_docs/version-1.1.x/04-generate-entity/01-sea-orm-cli.md b/SeaORM/versioned_docs/version-1.1.x/04-generate-entity/01-sea-orm-cli.md index 60900e43d31..2956748a61c 100644 --- a/SeaORM/versioned_docs/version-1.1.x/04-generate-entity/01-sea-orm-cli.md +++ b/SeaORM/versioned_docs/version-1.1.x/04-generate-entity/01-sea-orm-cli.md @@ -3,7 +3,7 @@ First, install `sea-orm-cli` with `cargo`. ```shell -cargo install sea-orm-cli@1.0.0-rc.5 +cargo install sea-orm-cli@1.1.0 ``` :::tip SQL Server (MSSQL) backend diff --git a/SeaORM/versioned_docs/version-1.1.x/08-advanced-query/01-custom-select.md b/SeaORM/versioned_docs/version-1.1.x/08-advanced-query/01-custom-select.md index a115d40cf51..3bb021e6e2c 100644 --- a/SeaORM/versioned_docs/version-1.1.x/08-advanced-query/01-custom-select.md +++ b/SeaORM/versioned_docs/version-1.1.x/08-advanced-query/01-custom-select.md @@ -203,7 +203,7 @@ struct PartialUser { let query = User::find().into_partial_model::(); ``` -:::tip Since `1.0.0-rc.2` +:::tip Since `1.0.0` `DerivePartialModel` macro attribute `entity` supports complex types ```rust #[sea_orm(entity = "::Entity")] diff --git a/SeaORM/versioned_docs/version-1.1.x/10-seaography/02-getting-started.md b/SeaORM/versioned_docs/version-1.1.x/10-seaography/02-getting-started.md index 1547f782ee3..df157261279 100644 --- a/SeaORM/versioned_docs/version-1.1.x/10-seaography/02-getting-started.md +++ b/SeaORM/versioned_docs/version-1.1.x/10-seaography/02-getting-started.md @@ -9,7 +9,7 @@ To get started, all you need is a live SQL database with schema. You can code ev ## Install Seaography ```bash -cargo install seaography-cli@^1.0.0-rc.2 +cargo install seaography-cli@^1.1.0 ``` ## Generate Seaography Entities @@ -34,4 +34,4 @@ cd graphql cargo run ``` -You are of course free to modify the project to suit your needs. But the interesting bit starts at the `seaography::register_entity!` macro and the [seaography::Builder](https://docs.rs/seaography/1.0.0-rc.2/seaography/builder/struct.Builder.html). \ No newline at end of file +You are of course free to modify the project to suit your needs. But the interesting bit starts at the `seaography::register_entity!` macro and the [seaography::Builder](https://docs.rs/seaography/1.1.0/seaography/builder/struct.Builder.html). \ No newline at end of file