Skip to content

Commit

Permalink
Merge pull request #52 from sergeyklay/release/v1.7.0
Browse files Browse the repository at this point in the history
Release/v1.7.0
  • Loading branch information
sergeyklay authored Feb 22, 2023
2 parents bdf330c + 6bc500b commit 4cf4c92
Show file tree
Hide file tree
Showing 4 changed files with 60 additions and 33 deletions.
37 changes: 32 additions & 5 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,23 @@ Changelog
This file contains a brief summary of new features and dependency changes or
releases, in reverse chronological order.

.. note::

Backward incompatible (breaking) changes will only be introduced in major
versions.
1.7.0 (2023-02-22)
------------------

Features
^^^^^^^^

* Rework the main application entry point to provide more options for launching
the application.


Improvements
^^^^^^^^^^^^

* Improve OpenAPI spec documentation.
* Amend contract tests for product API.

1.7.0 (2023-XX-XX)
------------------

Bug Fixes
^^^^^^^^^
Expand All @@ -20,6 +29,24 @@ Bug Fixes
* Fixed response code for 400 error.


Breaking Changes
^^^^^^^^^^^^^^^^

* Separate pagination ``links`` in responses to a separate response attribute.
* Rename ``pages`` response attribute to ``pagination``.


Trivial/Internal Changes
^^^^^^^^^^^^^^^^^^^^^^^^

* Separate Python code linting into a separate workflow.
* Extract database seeder into a separate module.
* Move ``db`` definition to ``app`` module.
* Use SQLAlchemy 2.x way to declare ORM models.
* Separate Categories into a separate ORM model.
* Separate Brands into a separate ORM model.


----


Expand Down
52 changes: 26 additions & 26 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "specmatic-testing-example",
"version": "1.6.0",
"version": "1.7.0",
"private": true,
"description": "Provider-side demo using Specmatic to do contract driven development",
"main": "index.js",
Expand Down
2 changes: 1 addition & 1 deletion products/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"""

__copyright__ = 'Copyright (C) 2023 Serghei Iakovlev'
__version__ = '1.6.0'
__version__ = '1.7.0'
__license__ = 'MIT'
__author__ = 'Serghei Iakovlev'
__author_email__ = '[email protected]'
Expand Down

0 comments on commit 4cf4c92

Please sign in to comment.