diff --git a/CHANGELOG.md b/CHANGELOG.md index 084ba30..fb5dd5d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,47 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## 2024-11-29 + +### Changes + +--- + +Packages with breaking changes: + + - There are no breaking changes in this release. + +Packages with other changes: + + - [`athena_migrate` - `v1.2.0`](#athena_migrate---v120) + - [`athena_mysql` - `v1.2.0`](#athena_mysql---v120) + - [`athena_postgres` - `v1.2.0`](#athena_postgres---v120) + - [`athena_sql` - `v1.3.0`](#athena_sql---v130) + - [`athena_utils` - `v1.2.0`](#athena_utils---v120) + +--- + +#### `athena_migrate` - `v1.2.0` + + - **FEAT**: update deps (#61). + +#### `athena_mysql` - `v1.2.0` + + - **FEAT**: update deps (#61). + +#### `athena_postgres` - `v1.2.0` + + - **FEAT**: update deps (#61). + +#### `athena_sql` - `v1.3.0` + + - **FEAT**: update deps (#61). + +#### `athena_utils` - `v1.2.0` + + - **FEAT**: update deps (#61). + + ## 2024-11-29 ### Changes diff --git a/packages/athena_migrate/CHANGELOG.md b/packages/athena_migrate/CHANGELOG.md index 687f30e..29bdb45 100644 --- a/packages/athena_migrate/CHANGELOG.md +++ b/packages/athena_migrate/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.2.0 + + - **FEAT**: update deps (#61). + ## 1.1.0 - **FEAT**: update deps (#61). diff --git a/packages/athena_migrate/pubspec.yaml b/packages/athena_migrate/pubspec.yaml index 10f2187..0806236 100644 --- a/packages/athena_migrate/pubspec.yaml +++ b/packages/athena_migrate/pubspec.yaml @@ -1,6 +1,6 @@ name: athena_migrate description: Athena SQL migration tool -version: 1.1.0 +version: 1.2.0 homepage: https://docs.athena-sql.dev/migration/ repository: https://github.com/athena-sql/athena_sql/tree/master/packages/athena_migrate @@ -17,7 +17,7 @@ dependencies: intl: ^0.20.1 path: ^1.9.1 yaml: ^3.1.2 - athena_utils: ^1.1.0 + athena_utils: ^1.2.0 collection: ^1.19.1 clock: ^1.1.2 executables: diff --git a/packages/athena_mysql/CHANGELOG.md b/packages/athena_mysql/CHANGELOG.md index cd21f83..d806254 100644 --- a/packages/athena_mysql/CHANGELOG.md +++ b/packages/athena_mysql/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.2.0 + + - **FEAT**: update deps (#61). + ## 1.1.0 - **FEAT**: update deps (#61). diff --git a/packages/athena_mysql/pubspec.yaml b/packages/athena_mysql/pubspec.yaml index 6a8c657..b9e02bd 100644 --- a/packages/athena_mysql/pubspec.yaml +++ b/packages/athena_mysql/pubspec.yaml @@ -1,7 +1,7 @@ name: athena_mysql description: >- Dart MySQL query builder, expressive and user-friendly API to build and manage SQL queries in your Dart projects. -version: 1.1.0 +version: 1.2.0 homepage: https://docs.athena-sql.dev/mysql/ repository: https://github.com/athena-sql/athena_sql/tree/master/packages/athena_mysql/ @@ -13,7 +13,7 @@ environment: sdk: '>=3.0.0 <4.0.0' dependencies: - athena_sql: ^1.2.0 + athena_sql: ^1.3.0 mysql_client: ^0.0.27 path: ^1.9.1 diff --git a/packages/athena_postgres/CHANGELOG.md b/packages/athena_postgres/CHANGELOG.md index b21da7d..0a4f85a 100644 --- a/packages/athena_postgres/CHANGELOG.md +++ b/packages/athena_postgres/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.2.0 + + - **FEAT**: update deps (#61). + ## 1.1.0 - **FEAT**: update deps (#61). diff --git a/packages/athena_postgres/pubspec.yaml b/packages/athena_postgres/pubspec.yaml index 7853c57..f76cf6b 100644 --- a/packages/athena_postgres/pubspec.yaml +++ b/packages/athena_postgres/pubspec.yaml @@ -1,7 +1,7 @@ name: athena_postgres description: >- Dart PostgreSQL query builder, expressive and user-friendly API to build and manage SQL queries in your Dart projects. -version: 1.1.0 +version: 1.2.0 homepage: https://docs.athena-sql.dev/postgres/ repository: https://github.com/athena-sql/athena_sql/tree/master/packages/athena_postgres/ @@ -13,7 +13,7 @@ environment: sdk: '>=3.0.0 <4.0.0' dependencies: - athena_sql: ^1.2.0 + athena_sql: ^1.3.0 path: ^1.9.1 postgres: ^3.4.4 diff --git a/packages/athena_sql/CHANGELOG.md b/packages/athena_sql/CHANGELOG.md index 4df57b0..ca7779f 100644 --- a/packages/athena_sql/CHANGELOG.md +++ b/packages/athena_sql/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.3.0 + + - **FEAT**: update deps (#61). + ## 1.2.0 - **FEAT**: update deps (#61). diff --git a/packages/athena_sql/pubspec.yaml b/packages/athena_sql/pubspec.yaml index d88f185..cc86885 100644 --- a/packages/athena_sql/pubspec.yaml +++ b/packages/athena_sql/pubspec.yaml @@ -1,7 +1,7 @@ name: athena_sql description: >- Dart SQL query builder, expressive and user-friendly API to build and manage SQL queries in your Dart projects. -version: 1.2.0 +version: 1.3.0 homepage: https://docs.athena-sql.dev/ repository: https://github.com/athena-sql/athena_sql/ @@ -10,7 +10,7 @@ environment: dependencies: collection: ^1.19.1 - athena_utils: ^1.1.0 + athena_utils: ^1.2.0 dev_dependencies: lints: ^5.0.0 diff --git a/packages/athena_utils/CHANGELOG.md b/packages/athena_utils/CHANGELOG.md index 77aa830..8a220ae 100644 --- a/packages/athena_utils/CHANGELOG.md +++ b/packages/athena_utils/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.2.0 + + - **FEAT**: update deps (#61). + ## 1.1.0 - **FEAT**: update deps (#61). diff --git a/packages/athena_utils/pubspec.yaml b/packages/athena_utils/pubspec.yaml index efc3d8d..39d94ed 100644 --- a/packages/athena_utils/pubspec.yaml +++ b/packages/athena_utils/pubspec.yaml @@ -1,7 +1,7 @@ name: athena_utils description: >- Util common package for Athena SQL and its CLI -version: 1.1.0 +version: 1.2.0 homepage: https://docs.athena-sql.dev/utils/ repository: https://github.com/athena-sql/athena_sql/tree/master/packages/athena_utils