Skip to content

Commit 772cb4f

Browse files
authored
Merge pull request #238 from uclahs-cds/aholmes-fix-alembic
Fix breaking change in non-breaking version update from Alembic.
2 parents ea8dce2 + 7c47a1b commit 772cb4f

File tree

5 files changed

+19
-4
lines changed

5 files changed

+19
-4
lines changed

CHANGELOG.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,25 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
1111
## Unreleased
1212

1313
---
14+
## `Ligare.all` [0.10.3] - 2025-06-09
15+
16+
### Fixed
17+
- Fixed issue with breaking change from Alembic causing migration failures when creating Alembic config.
18+
19+
### `Ligare.database` [0.5.1] - 2025-06-09
20+
21+
* [Ligare.database v0.5.1](https://github.com/uclahs-cds/Ligare/blob/Ligare.database-v0.5.1/src/database/CHANGELOG.md#051---2025-06-09)
22+
23+
---
24+
1425
## `Ligare.all` [0.10.2] - 2025-05-23
1526

1627
### Fixed
1728
- Fixed a problem with R serialization when serializing values to character vectors.
1829

1930
### `Ligare.programming` [0.7.1] - 2025-05-23
2031

21-
* [Ligare.programming v0.7.1](https://github.com/uclahs-cds/Ligare/blob/Ligare.programming-v0.7.1/src/web/CHANGELOG.md#071---2025-05=23)
32+
* [Ligare.programming v0.7.1](https://github.com/uclahs-cds/Ligare/blob/Ligare.programming-v0.7.1/src/programming/CHANGELOG.md#071---2025-05-23)
2233

2334
---
2435

src/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__: str = "0.10.2"
1+
__version__: str = "0.10.3"

src/database/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@ Review the `Ligare` [CHANGELOG.md](https://github.com/uclahs-cds/Ligare/blob/mai
1111
---
1212
## Unreleased
1313

14+
## [0.5.1] - 2025-06-09
15+
### Fixed
16+
- Fixed issue with breaking change from Alembic causing migration failures when creating Alembic config.
17+
1418
## [0.5.0] - 2025-03-25
1519
### Added
1620
- Added module-level documentation for all key components in `Ligare.database`, including engines, migrations, and schema.

src/database/Ligare/database/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55
For usage, see :ref:`ligare-database`.
66
"""
77

8-
__version__: str = "0.5.0"
8+
__version__: str = "0.5.1"

src/database/Ligare/database/migrations/alembic/ligare_alembic.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ def _get_config(self, argv: list[str]) -> Config:
6868
alembic_cli = CommandLine()
6969
parsed_args = alembic_cli.parser.parse_args(argv)
7070
self._log.debug(f"Parsed arguments: {parsed_args}")
71-
config = Config(parsed_args.config)
71+
config = Config(*parsed_args.config)
7272
self._log.debug(f"Instantiated config: {repr(config)}")
7373
return config
7474

0 commit comments

Comments
 (0)