diff --git a/CHANGELOG.md b/CHANGELOG.md index 58a3678e8a..ccb19afb28 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## [1.17.1](https://github.com/bcgov/cas-registration/compare/v1.17.0...v1.17.1) (2025-01-02) + +### Bug Fixes + +- fix api docs endpoint ([6a8d77e](https://github.com/bcgov/cas-registration/commit/6a8d77ee4b55186aa3b4580e629664a9dc7b5eae)) + # [1.17.0](https://github.com/bcgov/cas-registration/compare/v1.15.0...v1.17.0) (2024-12-18) ### Bug Fixes diff --git a/bc_obps/common/migrations/0029_V1_17_1.py b/bc_obps/common/migrations/0029_V1_17_1.py new file mode 100644 index 0000000000..1bdf06e47b --- /dev/null +++ b/bc_obps/common/migrations/0029_V1_17_1.py @@ -0,0 +1,12 @@ +# Generated by Django 5.0.10 on 2025-01-02 17:49 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('common', '0028_V1_17_0'), + ] + + operations = [] diff --git a/bc_obps/registration/migrations/0066_V1_17_1.py b/bc_obps/registration/migrations/0066_V1_17_1.py new file mode 100644 index 0000000000..80b6ed3cdf --- /dev/null +++ b/bc_obps/registration/migrations/0066_V1_17_1.py @@ -0,0 +1,12 @@ +# Generated by Django 5.0.10 on 2025-01-02 17:49 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('registration', '0065_alter_historicaloperation_status_and_more'), + ] + + operations = [] diff --git a/package.json b/package.json index 1e90529eb4..98912eb5af 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "cas-registration", - "version": "1.17.0", + "version": "1.17.1", "main": "index.js", "repository": "https://github.com/bcgov/cas-registration.git", "author": "ggircs@gov.bc.ca",