From c81088bf13c3d3a3de1a8c7971b624e7b6730a3c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Brunner?= Date: Tue, 17 Jan 2023 16:34:36 +0100 Subject: [PATCH] Change changelog generation tool, move ti the the GitHub release --- .github/changelog-config.yaml | 24 -- .github/workflows/changelog.yaml | 60 ++--- CHANGELOG.md | 366 ------------------------------- 3 files changed, 23 insertions(+), 427 deletions(-) delete mode 100644 .github/changelog-config.yaml delete mode 100644 CHANGELOG.md diff --git a/.github/changelog-config.yaml b/.github/changelog-config.yaml deleted file mode 100644 index f83bcc47..00000000 --- a/.github/changelog-config.yaml +++ /dev/null @@ -1,24 +0,0 @@ -enhancements: - prefix: '#### :sparkles: Enhancements' - labels: - - enhancement -bugs: - prefix: '#### :bug: Bug Fixes' - labels: - - bug -refactor: - prefix: '#### :hammer: Refactor' - labels: - - refactor -books: - prefix: '#### :books: Documentation' - labels: - - documentation -chore: - prefix: '#### :wrench: Build, CI, Tests, Code style' - labels: - - chore -dependencies: - prefix: '#### :package: Dependencies update' - labels: - - dependencies diff --git a/.github/workflows/changelog.yaml b/.github/workflows/changelog.yaml index 25da2c6c..3a584e3c 100644 --- a/.github/workflows/changelog.yaml +++ b/.github/workflows/changelog.yaml @@ -1,23 +1,25 @@ name: Changelog Generator on: + schedule: + - cron: '0 0 * * 1' push: - branches: - - master tags: - - '*' + - '*.*.*' jobs: changelog: name: Changelog Generator - runs-on: ubuntu-20.04 - timeout-minutes: 10 + runs-on: ubuntu-22.04 + timeout-minutes: 30 steps: - - uses: actions/checkout@v3 - - - run: echo "${HOME}/.local/bin" >> ${GITHUB_PATH} - - run: python3 -m pip install --user --requirement=ci/requirements.txt + - name: Create release + run: | + if [[ ${{ env.GITHUB_REF_NAME }} =~ ^[0-9]+\.[0-9]+\.[0-9]+$ ]]; then + gh release create ${{ env.GITHUB_REF_NAME }} + fi + if: env.GITHUB_REF_TYPE == 'tag' - name: Get Date id: get-date @@ -25,35 +27,19 @@ jobs: echo "date=$(/bin/date -u "+%Y%m%d%H%M%S")" >> $GITHUB_OUTPUT - uses: actions/cache@v3 with: - path: | - .github/changelog-generator-cache - key: changelog-${{ steps.get-date.outputs.date }} + path: .cache + key: automation-${{ steps.get-date.outputs.date }} restore-keys: | - changelog- + automation- - - name: Get config - id: config - run: echo "config=$(python -c 'print(__import__("json").dumps(__import__("yaml").load(open(".github/changelog-config.yaml"), Loader=__import__("yaml").SafeLoader)))')" >> $GITHUB_OUTPUT + - run: docker pull aeonphp/automation - name: Generate changelog - id: changelog - uses: heinrichreimer/github-changelog-generator-action@v2.3 - with: - token: ${{ secrets.GOPASS_CI_GITHUB_TOKEN }} - configureSections: ${{ steps.config.outputs.config }} - cacheFile: .github/changelog-generator-cache - unreleased: false - - - run: c2cciutils-checks --fix --check=prettier - - id: status - run: echo "status=$(git status --short)" >> $GITHUB_OUTPUT - - run: | - git add CHANGELOG.md - git config --global user.email "ci@example.com" - git config --global user.name "CI" - git commit -m "Update the changelog" - git checkout -b changelog-update - git push origin changelog-update -f - gh pr create --base=master --fill --label=chore || true + run: > + docker run --env=AEON_AUTOMATION_GH_TOKEN --rm --volume=$(pwd)/.cache:/cache aeonphp/automation + changelog:generate:all + ${{ github.repository }} + --github-release-update + --cache-path=/cache + -v env: - GITHUB_TOKEN: ${{ secrets.GOPASS_CI_GITHUB_TOKEN }} - if: steps.status.outputs.status != '' + AEON_AUTOMATION_GH_TOKEN: ${{ secrets.GOPASS_CI_GITHUB_TOKEN }} diff --git a/CHANGELOG.md b/CHANGELOG.md deleted file mode 100644 index b0cd1439..00000000 --- a/CHANGELOG.md +++ /dev/null @@ -1,366 +0,0 @@ -# Changelog - -## [1.4.1](https://github.com/camptocamp/jsonschema-gentypes/tree/1.4.1) (2022-12-12) - -[Full Changelog](https://github.com/camptocamp/jsonschema-gentypes/compare/1.4.0...1.4.1) - -**Closed issues:** - -- Make more intellisense friendly \(class + docstrings\) [\#134](https://github.com/camptocamp/jsonschema-gentypes/issues/134) - -## [1.4.0](https://github.com/camptocamp/jsonschema-gentypes/tree/1.4.0) (2022-11-28) - -[Full Changelog](https://github.com/camptocamp/jsonschema-gentypes/compare/1.3.2...1.4.0) - -#### :sparkles: Enhancements - -- Use more docstring [\#355](https://github.com/camptocamp/jsonschema-gentypes/pull/355) ([sbrunner](https://github.com/sbrunner)) - -#### :wrench: Build, CI, Tests, Code style - -- Upgrade deprecated set-output commands [\#349](https://github.com/camptocamp/jsonschema-gentypes/pull/349) ([sbrunner](https://github.com/sbrunner)) -- Remove pip upgrading to the latest version [\#348](https://github.com/camptocamp/jsonschema-gentypes/pull/348) ([sbrunner](https://github.com/sbrunner)) -- Create or update a Poetry group for Renovate [\#340](https://github.com/camptocamp/jsonschema-gentypes/pull/340) ([sbrunner](https://github.com/sbrunner)) -- Fix repository in workflow used to delete old workflow runs [\#337](https://github.com/camptocamp/jsonschema-gentypes/pull/337) ([sbrunner](https://github.com/sbrunner)) -- Fix repository in workflow used to delete old workflow runs [\#336](https://github.com/camptocamp/jsonschema-gentypes/pull/336) ([sbrunner](https://github.com/sbrunner)) -- Add workflow to delete old workflow runs [\#333](https://github.com/camptocamp/jsonschema-gentypes/pull/333) ([sbrunner](https://github.com/sbrunner)) -- Update the dynamic versioning configuration [\#330](https://github.com/camptocamp/jsonschema-gentypes/pull/330) ([sbrunner](https://github.com/sbrunner)) -- Use venv to avoid issue on reinstalling an other version of c2cciutils in audit workflow [\#327](https://github.com/camptocamp/jsonschema-gentypes/pull/327) ([sbrunner](https://github.com/sbrunner)) -- Fix the checkout user to be able to create pull request for Snyk fix [\#325](https://github.com/camptocamp/jsonschema-gentypes/pull/325) ([sbrunner](https://github.com/sbrunner)) -- Use the standard name for pull request checks workflow [\#315](https://github.com/camptocamp/jsonschema-gentypes/pull/315) ([sbrunner](https://github.com/sbrunner)) -- Fix the get config in changelog workflow [\#314](https://github.com/camptocamp/jsonschema-gentypes/pull/314) ([sbrunner](https://github.com/sbrunner)) -- Group Poetry packages in Renovate pull requests [\#313](https://github.com/camptocamp/jsonschema-gentypes/pull/313) ([sbrunner](https://github.com/sbrunner)) -- Schedule Renovate on early Saturday [\#312](https://github.com/camptocamp/jsonschema-gentypes/pull/312) ([sbrunner](https://github.com/sbrunner)) -- Add the global requirements file to be scanned with Snyk [\#307](https://github.com/camptocamp/jsonschema-gentypes/pull/307) ([sbrunner](https://github.com/sbrunner)) -- Fix the changelog generator workflow [\#306](https://github.com/camptocamp/jsonschema-gentypes/pull/306) ([sbrunner](https://github.com/sbrunner)) -- Clean all the images already present in the image given by GitHub [\#305](https://github.com/camptocamp/jsonschema-gentypes/pull/305) ([sbrunner](https://github.com/sbrunner)) -- Update the changelog generation workflow [\#304](https://github.com/camptocamp/jsonschema-gentypes/pull/304) ([sbrunner](https://github.com/sbrunner)) -- Update the Renovate configuration [\#303](https://github.com/camptocamp/jsonschema-gentypes/pull/303) ([sbrunner](https://github.com/sbrunner)) -- Remove Dependabot configuration [\#302](https://github.com/camptocamp/jsonschema-gentypes/pull/302) ([sbrunner](https://github.com/sbrunner)) -- Update the changelog [\#292](https://github.com/camptocamp/jsonschema-gentypes/pull/292) ([github-actions[bot]](https://github.com/apps/github-actions)) -- Update the changelog [\#290](https://github.com/camptocamp/jsonschema-gentypes/pull/290) ([github-actions[bot]](https://github.com/apps/github-actions)) -- Update the SECURITY.md [\#289](https://github.com/camptocamp/jsonschema-gentypes/pull/289) ([sbrunner](https://github.com/sbrunner)) -- Update the changelog [\#288](https://github.com/camptocamp/jsonschema-gentypes/pull/288) ([github-actions[bot]](https://github.com/apps/github-actions)) -- Update the changelog [\#286](https://github.com/camptocamp/jsonschema-gentypes/pull/286) ([github-actions[bot]](https://github.com/apps/github-actions)) - -#### :package: Dependencies update - -- Lock file maintenance [\#352](https://github.com/camptocamp/jsonschema-gentypes/pull/352) ([renovate[bot]](https://github.com/apps/renovate)) -- Update all patch versions \(patch\) [\#350](https://github.com/camptocamp/jsonschema-gentypes/pull/350) ([renovate[bot]](https://github.com/apps/renovate)) -- Snyk auto fix [\#345](https://github.com/camptocamp/jsonschema-gentypes/pull/345) ([c2c-bot-gis-ci](https://github.com/c2c-bot-gis-ci)) -- Lock file maintenance [\#344](https://github.com/camptocamp/jsonschema-gentypes/pull/344) ([renovate[bot]](https://github.com/apps/renovate)) -- Update all patch versions \(patch\) [\#343](https://github.com/camptocamp/jsonschema-gentypes/pull/343) ([renovate[bot]](https://github.com/apps/renovate)) -- Update dependency c2cciutils to v1.4.0.dev185 [\#339](https://github.com/camptocamp/jsonschema-gentypes/pull/339) ([renovate[bot]](https://github.com/apps/renovate)) -- Update Poetry [\#338](https://github.com/camptocamp/jsonschema-gentypes/pull/338) ([renovate[bot]](https://github.com/apps/renovate)) -- Update andstor/file-existence-action action to v2 [\#335](https://github.com/camptocamp/jsonschema-gentypes/pull/335) ([renovate[bot]](https://github.com/apps/renovate)) -- Update all patch versions \(patch\) [\#334](https://github.com/camptocamp/jsonschema-gentypes/pull/334) ([renovate[bot]](https://github.com/apps/renovate)) -- Update dependency c2cciutils to v1.4.0.dev123 [\#332](https://github.com/camptocamp/jsonschema-gentypes/pull/332) ([renovate[bot]](https://github.com/apps/renovate)) -- Update dependency poetry to v1.2.2 [\#329](https://github.com/camptocamp/jsonschema-gentypes/pull/329) ([renovate[bot]](https://github.com/apps/renovate)) -- Update dependency c2cciutils to v1.4.0.dev121 [\#328](https://github.com/camptocamp/jsonschema-gentypes/pull/328) ([renovate[bot]](https://github.com/apps/renovate)) -- Lock file maintenance [\#324](https://github.com/camptocamp/jsonschema-gentypes/pull/324) ([renovate[bot]](https://github.com/apps/renovate)) -- Update dependency pyupgrade to v3 [\#323](https://github.com/camptocamp/jsonschema-gentypes/pull/323) ([renovate[bot]](https://github.com/apps/renovate)) -- Update dependency types-requests to v2.28.11.2 [\#322](https://github.com/camptocamp/jsonschema-gentypes/pull/322) ([renovate[bot]](https://github.com/apps/renovate)) -- Lock file maintenance [\#320](https://github.com/camptocamp/jsonschema-gentypes/pull/320) ([renovate[bot]](https://github.com/apps/renovate)) -- Update dependency pytest-cov to v4 [\#319](https://github.com/camptocamp/jsonschema-gentypes/pull/319) ([renovate[bot]](https://github.com/apps/renovate)) -- Update dependency types-pyyaml to v6.0.12 [\#318](https://github.com/camptocamp/jsonschema-gentypes/pull/318) ([renovate[bot]](https://github.com/apps/renovate)) -- Lock file maintenance [\#317](https://github.com/camptocamp/jsonschema-gentypes/pull/317) ([renovate[bot]](https://github.com/apps/renovate)) -- Update dependency poetry to v1.2.1 [\#316](https://github.com/camptocamp/jsonschema-gentypes/pull/316) ([renovate[bot]](https://github.com/apps/renovate)) -- Lock file maintenance [\#311](https://github.com/camptocamp/jsonschema-gentypes/pull/311) ([renovate[bot]](https://github.com/apps/renovate)) -- Update dependency types-requests to v2.28.11 [\#310](https://github.com/camptocamp/jsonschema-gentypes/pull/310) ([renovate[bot]](https://github.com/apps/renovate)) -- Lock file maintenance [\#309](https://github.com/camptocamp/jsonschema-gentypes/pull/309) ([renovate[bot]](https://github.com/apps/renovate)) -- Update dependency types-requests to v2.28.10 [\#308](https://github.com/camptocamp/jsonschema-gentypes/pull/308) ([renovate[bot]](https://github.com/apps/renovate)) -- Update all minor versions \(minor\) [\#301](https://github.com/camptocamp/jsonschema-gentypes/pull/301) ([renovate[bot]](https://github.com/apps/renovate)) -- Lock file maintenance [\#300](https://github.com/camptocamp/jsonschema-gentypes/pull/300) ([renovate[bot]](https://github.com/apps/renovate)) -- Update all patch versions \(patch\) [\#299](https://github.com/camptocamp/jsonschema-gentypes/pull/299) ([renovate[bot]](https://github.com/apps/renovate)) -- Lock file maintenance [\#293](https://github.com/camptocamp/jsonschema-gentypes/pull/293) ([renovate[bot]](https://github.com/apps/renovate)) -- Lock file maintenance [\#291](https://github.com/camptocamp/jsonschema-gentypes/pull/291) ([renovate[bot]](https://github.com/apps/renovate)) - -**Closed issues:** - -- Please release sdists [\#351](https://github.com/camptocamp/jsonschema-gentypes/issues/351) - -## [1.3.2](https://github.com/camptocamp/jsonschema-gentypes/tree/1.3.2) (2022-11-22) - -[Full Changelog](https://github.com/camptocamp/jsonschema-gentypes/compare/1.3.1...1.3.2) - -## [1.3.1](https://github.com/camptocamp/jsonschema-gentypes/tree/1.3.1) (2022-08-16) - -[Full Changelog](https://github.com/camptocamp/jsonschema-gentypes/compare/1.3.0...1.3.1) - -#### :bug: Bug Fixes - -- Add missing import for constants, better type for List and Dict [\#287](https://github.com/camptocamp/jsonschema-gentypes/pull/287) ([sbrunner](https://github.com/sbrunner)) - -#### :wrench: Build, CI, Tests, Code style - -- Update the changelog [\#271](https://github.com/camptocamp/jsonschema-gentypes/pull/271) ([github-actions[bot]](https://github.com/apps/github-actions)) - -## [1.3.0](https://github.com/camptocamp/jsonschema-gentypes/tree/1.3.0) (2022-08-16) - -[Full Changelog](https://github.com/camptocamp/jsonschema-gentypes/compare/1.2.1...1.3.0) - -#### :sparkles: Enhancements - -- Add default values in the generated file [\#285](https://github.com/camptocamp/jsonschema-gentypes/pull/285) ([sbrunner](https://github.com/sbrunner)) - -#### :wrench: Build, CI, Tests, Code style - -- Use the latest version of c2cciutils in the audit [\#281](https://github.com/camptocamp/jsonschema-gentypes/pull/281) ([sbrunner](https://github.com/sbrunner)) -- Fix the changelog generation [\#270](https://github.com/camptocamp/jsonschema-gentypes/pull/270) ([sbrunner](https://github.com/sbrunner)) -- Update the changelog [\#269](https://github.com/camptocamp/jsonschema-gentypes/pull/269) ([github-actions[bot]](https://github.com/apps/github-actions)) -- Update the changelog [\#267](https://github.com/camptocamp/jsonschema-gentypes/pull/267) ([github-actions[bot]](https://github.com/apps/github-actions)) - -#### :package: Dependencies update - -- Lock file maintenance [\#284](https://github.com/camptocamp/jsonschema-gentypes/pull/284) ([renovate[bot]](https://github.com/apps/renovate)) -- Update all patch versions \(patch\) [\#282](https://github.com/camptocamp/jsonschema-gentypes/pull/282) ([renovate[bot]](https://github.com/apps/renovate)) -- Lock file maintenance [\#280](https://github.com/camptocamp/jsonschema-gentypes/pull/280) ([renovate[bot]](https://github.com/apps/renovate)) -- Update dependency jsonschema to v4.9.0 [\#276](https://github.com/camptocamp/jsonschema-gentypes/pull/276) ([renovate[bot]](https://github.com/apps/renovate)) -- Update all patch versions \(patch\) [\#275](https://github.com/camptocamp/jsonschema-gentypes/pull/275) ([renovate[bot]](https://github.com/apps/renovate)) -- Update all minor versions \(minor\) [\#274](https://github.com/camptocamp/jsonschema-gentypes/pull/274) ([renovate[bot]](https://github.com/apps/renovate)) -- Update all patch versions \(patch\) [\#273](https://github.com/camptocamp/jsonschema-gentypes/pull/273) ([renovate[bot]](https://github.com/apps/renovate)) -- Lock file maintenance [\#272](https://github.com/camptocamp/jsonschema-gentypes/pull/272) ([renovate[bot]](https://github.com/apps/renovate)) - -## [1.2.1](https://github.com/camptocamp/jsonschema-gentypes/tree/1.2.1) (2022-07-11) - -[Full Changelog](https://github.com/camptocamp/jsonschema-gentypes/compare/1.2.0...1.2.1) - -#### :books: Documentation - -- Add generated changelog [\#261](https://github.com/camptocamp/jsonschema-gentypes/pull/261) ([sbrunner](https://github.com/sbrunner)) - -#### :package: Dependencies update - -- Lock file maintenance [\#268](https://github.com/camptocamp/jsonschema-gentypes/pull/268) ([renovate[bot]](https://github.com/apps/renovate)) - -## [1.2.0](https://github.com/camptocamp/jsonschema-gentypes/tree/1.2.0) (2022-07-11) - -[Full Changelog](https://github.com/camptocamp/jsonschema-gentypes/compare/1.1.0...1.2.0) - -#### :package: Dependencies update - -- Lock file maintenance [\#266](https://github.com/camptocamp/jsonschema-gentypes/pull/266) ([renovate[bot]](https://github.com/apps/renovate)) -- Update github/codeql-action action to v2 [\#265](https://github.com/camptocamp/jsonschema-gentypes/pull/265) ([renovate[bot]](https://github.com/apps/renovate)) -- Lock file maintenance [\#264](https://github.com/camptocamp/jsonschema-gentypes/pull/264) ([renovate[bot]](https://github.com/apps/renovate)) -- Update dependency pyupgrade to v2.37.0 [\#263](https://github.com/camptocamp/jsonschema-gentypes/pull/263) ([renovate[bot]](https://github.com/apps/renovate)) -- Update all patch versions \(patch\) [\#262](https://github.com/camptocamp/jsonschema-gentypes/pull/262) ([renovate[bot]](https://github.com/apps/renovate)) -- Update actions/checkout action to v3 [\#249](https://github.com/camptocamp/jsonschema-gentypes/pull/249) ([renovate[bot]](https://github.com/apps/renovate)) - -## [1.1.0](https://github.com/camptocamp/jsonschema-gentypes/tree/1.1.0) (2022-07-07) - -[Full Changelog](https://github.com/camptocamp/jsonschema-gentypes/compare/1.0.0...1.1.0) - -#### :bug: Bug Fixes - -- Replace unidecode by unicodedata, pinyin, romkan [\#260](https://github.com/camptocamp/jsonschema-gentypes/pull/260) ([sbrunner](https://github.com/sbrunner)) - -#### :books: Documentation - -- Fix typos in code samples [\#162](https://github.com/camptocamp/jsonschema-gentypes/pull/162) ([chlandsi](https://github.com/chlandsi)) - -#### :wrench: Build, CI, Tests, Code style - -- Use Poetry instead of Pipenv [\#247](https://github.com/camptocamp/jsonschema-gentypes/pull/247) ([sbrunner](https://github.com/sbrunner)) -- Don't run 2 CI jobs in a pull request [\#241](https://github.com/camptocamp/jsonschema-gentypes/pull/241) ([sbrunner](https://github.com/sbrunner)) -- Configure Renovate [\#238](https://github.com/camptocamp/jsonschema-gentypes/pull/238) ([sbrunner](https://github.com/sbrunner)) -- Create new version [\#146](https://github.com/camptocamp/jsonschema-gentypes/pull/146) ([sbrunner](https://github.com/sbrunner)) - -#### :package: Dependencies update - -- Lock file maintenance [\#258](https://github.com/camptocamp/jsonschema-gentypes/pull/258) ([renovate[bot]](https://github.com/apps/renovate)) -- Update all minor versions \(minor\) [\#257](https://github.com/camptocamp/jsonschema-gentypes/pull/257) ([renovate[bot]](https://github.com/apps/renovate)) -- Update all patch versions \(patch\) [\#256](https://github.com/camptocamp/jsonschema-gentypes/pull/256) ([renovate[bot]](https://github.com/apps/renovate)) -- Lock file maintenance [\#250](https://github.com/camptocamp/jsonschema-gentypes/pull/250) ([renovate[bot]](https://github.com/apps/renovate)) -- Update dependency c2cciutils to v1.2.dev20220616083735 [\#246](https://github.com/camptocamp/jsonschema-gentypes/pull/246) ([renovate[bot]](https://github.com/apps/renovate)) -- Lock file maintenance [\#244](https://github.com/camptocamp/jsonschema-gentypes/pull/244) ([renovate[bot]](https://github.com/apps/renovate)) -- Update dependency requests to v2.28.0 [\#243](https://github.com/camptocamp/jsonschema-gentypes/pull/243) ([renovate[bot]](https://github.com/apps/renovate)) -- Update all patch versions [\#242](https://github.com/camptocamp/jsonschema-gentypes/pull/242) ([renovate[bot]](https://github.com/apps/renovate)) -- Bump c2cciutils from 1.2.dev20220601085126 to 1.2.dev20220607092206 [\#237](https://github.com/camptocamp/jsonschema-gentypes/pull/237) ([dependabot[bot]](https://github.com/apps/dependabot)) -- Bump pipenv from 2022.5.2 to 2022.6.7 [\#236](https://github.com/camptocamp/jsonschema-gentypes/pull/236) ([dependabot[bot]](https://github.com/apps/dependabot)) -- Bump mypy from 0.960 to 0.961 [\#234](https://github.com/camptocamp/jsonschema-gentypes/pull/234) ([dependabot[bot]](https://github.com/apps/dependabot)) -- Bump pyupgrade from 2.32.1 to 2.34.0 [\#233](https://github.com/camptocamp/jsonschema-gentypes/pull/233) ([dependabot[bot]](https://github.com/apps/dependabot)) -- Bump jsonschema from 4.5.1 to 4.6.0 [\#232](https://github.com/camptocamp/jsonschema-gentypes/pull/232) ([dependabot[bot]](https://github.com/apps/dependabot)) -- Bump c2cciutils from 1.2.dev20220527115520 to 1.2.dev20220601085126 [\#231](https://github.com/camptocamp/jsonschema-gentypes/pull/231) ([dependabot[bot]](https://github.com/apps/dependabot)) -- Bump types-pyyaml from 6.0.7 to 6.0.8 [\#230](https://github.com/camptocamp/jsonschema-gentypes/pull/230) ([dependabot[bot]](https://github.com/apps/dependabot)) -- Bump types-requests from 2.27.29 to 2.27.30 [\#229](https://github.com/camptocamp/jsonschema-gentypes/pull/229) ([dependabot[bot]](https://github.com/apps/dependabot)) -- Bump c2cciutils from 1.2.dev20220509122615 to 1.2.dev20220527115520 [\#227](https://github.com/camptocamp/jsonschema-gentypes/pull/227) ([dependabot[bot]](https://github.com/apps/dependabot)) -- Bump types-requests from 2.27.27 to 2.27.29 [\#226](https://github.com/camptocamp/jsonschema-gentypes/pull/226) ([dependabot[bot]](https://github.com/apps/dependabot)) -- Bump mypy from 0.950 to 0.960 [\#225](https://github.com/camptocamp/jsonschema-gentypes/pull/225) ([dependabot[bot]](https://github.com/apps/dependabot)) -- Bump types-requests from 2.27.26 to 2.27.27 [\#224](https://github.com/camptocamp/jsonschema-gentypes/pull/224) ([dependabot[bot]](https://github.com/apps/dependabot)) -- Bump types-requests from 2.27.25 to 2.27.26 [\#221](https://github.com/camptocamp/jsonschema-gentypes/pull/221) ([dependabot[bot]](https://github.com/apps/dependabot)) -- Bump c2cciutils from 1.2.dev20220506093925 to 1.2.dev20220509122615 [\#218](https://github.com/camptocamp/jsonschema-gentypes/pull/218) ([dependabot[bot]](https://github.com/apps/dependabot)) -- Bump c2cciutils from 1.2.dev20220414132101 to 1.2.dev20220506093925 [\#217](https://github.com/camptocamp/jsonschema-gentypes/pull/217) ([dependabot[bot]](https://github.com/apps/dependabot)) -- Bump jsonschema from 4.4.0 to 4.5.1 [\#216](https://github.com/camptocamp/jsonschema-gentypes/pull/216) ([dependabot[bot]](https://github.com/apps/dependabot)) -- Bump pyupgrade from 2.32.0 to 2.32.1 [\#215](https://github.com/camptocamp/jsonschema-gentypes/pull/215) ([dependabot[bot]](https://github.com/apps/dependabot)) -- Bump pipenv from 2022.4.30 to 2022.5.2 [\#214](https://github.com/camptocamp/jsonschema-gentypes/pull/214) ([dependabot[bot]](https://github.com/apps/dependabot)) -- Bump pipenv from 2022.4.21 to 2022.4.30 [\#213](https://github.com/camptocamp/jsonschema-gentypes/pull/213) ([dependabot[bot]](https://github.com/apps/dependabot)) -- Bump types-requests from 2.27.24 to 2.27.25 [\#212](https://github.com/camptocamp/jsonschema-gentypes/pull/212) ([dependabot[bot]](https://github.com/apps/dependabot)) -- Bump types-requests from 2.27.22 to 2.27.24 [\#211](https://github.com/camptocamp/jsonschema-gentypes/pull/211) ([dependabot[bot]](https://github.com/apps/dependabot)) -- Bump mypy from 0.942 to 0.950 [\#210](https://github.com/camptocamp/jsonschema-gentypes/pull/210) ([dependabot[bot]](https://github.com/apps/dependabot)) -- Bump types-requests from 2.27.20 to 2.27.22 [\#209](https://github.com/camptocamp/jsonschema-gentypes/pull/209) ([dependabot[bot]](https://github.com/apps/dependabot)) -- Bump pytest from 7.1.1 to 7.1.2 [\#208](https://github.com/camptocamp/jsonschema-gentypes/pull/208) ([dependabot[bot]](https://github.com/apps/dependabot)) -- Bump pipenv from 2022.4.20 to 2022.4.21 [\#207](https://github.com/camptocamp/jsonschema-gentypes/pull/207) ([dependabot[bot]](https://github.com/apps/dependabot)) -- Bump pipenv from 2022.4.8 to 2022.4.20 [\#206](https://github.com/camptocamp/jsonschema-gentypes/pull/206) ([dependabot[bot]](https://github.com/apps/dependabot)) -- Bump types-requests from 2.27.19 to 2.27.20 [\#205](https://github.com/camptocamp/jsonschema-gentypes/pull/205) ([dependabot[bot]](https://github.com/apps/dependabot)) -- Bump types-pyyaml from 6.0.6 to 6.0.7 [\#204](https://github.com/camptocamp/jsonschema-gentypes/pull/204) ([dependabot[bot]](https://github.com/apps/dependabot)) -- Bump types-pyyaml from 6.0.5 to 6.0.6 [\#203](https://github.com/camptocamp/jsonschema-gentypes/pull/203) ([dependabot[bot]](https://github.com/apps/dependabot)) -- Bump types-requests from 2.27.16 to 2.27.19 [\#202](https://github.com/camptocamp/jsonschema-gentypes/pull/202) ([dependabot[bot]](https://github.com/apps/dependabot)) -- Bump c2cciutils from 1.2.dev20220331120018 to 1.2.dev20220414132101 [\#201](https://github.com/camptocamp/jsonschema-gentypes/pull/201) ([dependabot[bot]](https://github.com/apps/dependabot)) -- Bump pipenv from 2022.3.28 to 2022.4.8 [\#200](https://github.com/camptocamp/jsonschema-gentypes/pull/200) ([dependabot[bot]](https://github.com/apps/dependabot)) -- Bump pyupgrade from 2.31.1 to 2.32.0 [\#199](https://github.com/camptocamp/jsonschema-gentypes/pull/199) ([dependabot[bot]](https://github.com/apps/dependabot)) -- Bump types-requests from 2.27.15 to 2.27.16 [\#195](https://github.com/camptocamp/jsonschema-gentypes/pull/195) ([dependabot[bot]](https://github.com/apps/dependabot)) -- Bump c2cciutils from 1.2.dev20220317100006 to 1.2.dev20220331120018 [\#193](https://github.com/camptocamp/jsonschema-gentypes/pull/193) ([dependabot[bot]](https://github.com/apps/dependabot)) -- Bump pipenv from 2022.3.24 to 2022.3.28 [\#192](https://github.com/camptocamp/jsonschema-gentypes/pull/192) ([dependabot[bot]](https://github.com/apps/dependabot)) -- Bump black from 22.1.0 to 22.3.0 [\#191](https://github.com/camptocamp/jsonschema-gentypes/pull/191) ([dependabot[bot]](https://github.com/apps/dependabot)) -- Bump types-requests from 2.27.14 to 2.27.15 [\#189](https://github.com/camptocamp/jsonschema-gentypes/pull/189) ([dependabot[bot]](https://github.com/apps/dependabot)) -- Bump mypy from 0.941 to 0.942 [\#188](https://github.com/camptocamp/jsonschema-gentypes/pull/188) ([dependabot[bot]](https://github.com/apps/dependabot)) -- Bump pipenv from 2022.1.8 to 2022.3.24 [\#186](https://github.com/camptocamp/jsonschema-gentypes/pull/186) ([dependabot[bot]](https://github.com/apps/dependabot)) -- Bump types-requests from 2.27.13 to 2.27.14 [\#185](https://github.com/camptocamp/jsonschema-gentypes/pull/185) ([dependabot[bot]](https://github.com/apps/dependabot)) -- Bump pytest from 7.1.0 to 7.1.1 [\#184](https://github.com/camptocamp/jsonschema-gentypes/pull/184) ([dependabot[bot]](https://github.com/apps/dependabot)) -- Bump c2cciutils from 1.2.dev20220314145935 to 1.2.dev20220317100006 [\#183](https://github.com/camptocamp/jsonschema-gentypes/pull/183) ([dependabot[bot]](https://github.com/apps/dependabot)) -- Bump types-pyyaml from 6.0.4 to 6.0.5 [\#182](https://github.com/camptocamp/jsonschema-gentypes/pull/182) ([dependabot[bot]](https://github.com/apps/dependabot)) -- Bump types-requests from 2.27.12 to 2.27.13 [\#180](https://github.com/camptocamp/jsonschema-gentypes/pull/180) ([dependabot[bot]](https://github.com/apps/dependabot)) -- Bump mypy from 0.940 to 0.941 [\#179](https://github.com/camptocamp/jsonschema-gentypes/pull/179) ([dependabot[bot]](https://github.com/apps/dependabot)) -- Bump c2cciutils from 1.2.dev20220309162621 to 1.2.dev20220314145935 [\#178](https://github.com/camptocamp/jsonschema-gentypes/pull/178) ([dependabot[bot]](https://github.com/apps/dependabot)) -- Bump pytest from 7.0.1 to 7.1.0 [\#177](https://github.com/camptocamp/jsonschema-gentypes/pull/177) ([dependabot[bot]](https://github.com/apps/dependabot)) -- Bump pyupgrade from 2.31.0 to 2.31.1 [\#176](https://github.com/camptocamp/jsonschema-gentypes/pull/176) ([dependabot[bot]](https://github.com/apps/dependabot)) -- Bump types-requests from 2.27.11 to 2.27.12 [\#175](https://github.com/camptocamp/jsonschema-gentypes/pull/175) ([dependabot[bot]](https://github.com/apps/dependabot)) -- Bump mypy from 0.931 to 0.940 [\#174](https://github.com/camptocamp/jsonschema-gentypes/pull/174) ([dependabot[bot]](https://github.com/apps/dependabot)) -- Bump unidecode from 1.3.3 to 1.3.4 [\#173](https://github.com/camptocamp/jsonschema-gentypes/pull/173) ([dependabot[bot]](https://github.com/apps/dependabot)) -- Bump c2cciutils from 1.2.dev20220304093002 to 1.2.dev20220309162621 [\#172](https://github.com/camptocamp/jsonschema-gentypes/pull/172) ([dependabot[bot]](https://github.com/apps/dependabot)) -- Bump prospector from 1.7.6 to 1.7.7 [\#171](https://github.com/camptocamp/jsonschema-gentypes/pull/171) ([dependabot[bot]](https://github.com/apps/dependabot)) -- Bump c2cciutils from 1.2.dev20220302121825 to 1.2.dev20220304093002 [\#170](https://github.com/camptocamp/jsonschema-gentypes/pull/170) ([dependabot[bot]](https://github.com/apps/dependabot)) -- Bump prospector from 1.7.5 to 1.7.6 [\#169](https://github.com/camptocamp/jsonschema-gentypes/pull/169) ([dependabot[bot]](https://github.com/apps/dependabot)) -- Bump c2cciutils from 1.2.dev20220301083327 to 1.2.dev20220302121825 [\#168](https://github.com/camptocamp/jsonschema-gentypes/pull/168) ([dependabot[bot]](https://github.com/apps/dependabot)) -- Bump prospector from 1.7.4 to 1.7.5 [\#167](https://github.com/camptocamp/jsonschema-gentypes/pull/167) ([dependabot[bot]](https://github.com/apps/dependabot)) -- Bump flake8 from 3.9.2 to 4.0.1 [\#166](https://github.com/camptocamp/jsonschema-gentypes/pull/166) ([dependabot[bot]](https://github.com/apps/dependabot)) -- Bump c2cciutils from 1.2.dev20220215091734 to 1.2.dev20220301083327 [\#165](https://github.com/camptocamp/jsonschema-gentypes/pull/165) ([dependabot[bot]](https://github.com/apps/dependabot)) -- Bump prospector from 1.6.0 to 1.7.4 [\#164](https://github.com/camptocamp/jsonschema-gentypes/pull/164) ([dependabot[bot]](https://github.com/apps/dependabot)) -- Bump types-requests from 2.27.10 to 2.27.11 [\#161](https://github.com/camptocamp/jsonschema-gentypes/pull/161) ([dependabot[bot]](https://github.com/apps/dependabot)) -- Bump unidecode from 1.3.2 to 1.3.3 [\#160](https://github.com/camptocamp/jsonschema-gentypes/pull/160) ([dependabot[bot]](https://github.com/apps/dependabot)) -- Bump types-requests from 2.27.9 to 2.27.10 [\#157](https://github.com/camptocamp/jsonschema-gentypes/pull/157) ([dependabot[bot]](https://github.com/apps/dependabot)) -- Bump c2cciutils from 1.2.dev20220214124120 to 1.2.dev20220215091734 [\#155](https://github.com/camptocamp/jsonschema-gentypes/pull/155) ([dependabot[bot]](https://github.com/apps/dependabot)) -- Bump c2cciutils from 1.2.dev20220209105112 to 1.2.dev20220214124120 [\#154](https://github.com/camptocamp/jsonschema-gentypes/pull/154) ([dependabot[bot]](https://github.com/apps/dependabot)) -- Bump pytest from 7.0.0 to 7.0.1 [\#153](https://github.com/camptocamp/jsonschema-gentypes/pull/153) ([dependabot[bot]](https://github.com/apps/dependabot)) -- Bump c2cciutils from 1.2.dev20220208134628 to 1.2.dev20220209105112 [\#151](https://github.com/camptocamp/jsonschema-gentypes/pull/151) ([dependabot[bot]](https://github.com/apps/dependabot)) -- Bump types-requests from 2.27.8 to 2.27.9 [\#149](https://github.com/camptocamp/jsonschema-gentypes/pull/149) ([dependabot[bot]](https://github.com/apps/dependabot)) -- Bump c2cciutils from 1.2.dev20220207125831 to 1.2.dev20220208134628 [\#148](https://github.com/camptocamp/jsonschema-gentypes/pull/148) ([dependabot[bot]](https://github.com/apps/dependabot)) -- Bump c2cciutils from 1.1.dev20220203110559 to 1.2.dev20220207125831 [\#147](https://github.com/camptocamp/jsonschema-gentypes/pull/147) ([dependabot[bot]](https://github.com/apps/dependabot)) - -## [1.0.0](https://github.com/camptocamp/jsonschema-gentypes/tree/1.0.0) (2022-02-07) - -[Full Changelog](https://github.com/camptocamp/jsonschema-gentypes/compare/0.9.4...1.0.0) - -#### :sparkles: Enhancements - -- \[Backport master\] Get more understandable error message on deep structure [\#27](https://github.com/camptocamp/jsonschema-gentypes/pull/27) ([c2c-bot-gis-ci](https://github.com/c2c-bot-gis-ci)) -- Add validator with line number and default setter [\#10](https://github.com/camptocamp/jsonschema-gentypes/pull/10) ([sbrunner](https://github.com/sbrunner)) - -#### :bug: Bug Fixes - -- \[Backport master\] Support line split in description, add auto-split lines [\#37](https://github.com/camptocamp/jsonschema-gentypes/pull/37) ([c2c-bot-gis-ci](https://github.com/c2c-bot-gis-ci)) -- \[Backport master\] Validation: disable default by default, remove load, add doc [\#35](https://github.com/camptocamp/jsonschema-gentypes/pull/35) ([c2c-bot-gis-ci](https://github.com/c2c-bot-gis-ci)) -- \[Backport master\] Add rule in error [\#34](https://github.com/camptocamp/jsonschema-gentypes/pull/34) ([c2c-bot-gis-ci](https://github.com/c2c-bot-gis-ci)) -- \[Backport master\] Instance can be none [\#33](https://github.com/camptocamp/jsonschema-gentypes/pull/33) ([c2c-bot-gis-ci](https://github.com/c2c-bot-gis-ci)) -- \[Backport master\] Be able to get the data on error [\#26](https://github.com/camptocamp/jsonschema-gentypes/pull/26) ([c2c-bot-gis-ci](https://github.com/c2c-bot-gis-ci)) -- Fix enum compatible with JSON [\#16](https://github.com/camptocamp/jsonschema-gentypes/pull/16) ([sbrunner](https://github.com/sbrunner)) - -#### :books: Documentation - -- Add readme [\#11](https://github.com/camptocamp/jsonschema-gentypes/pull/11) ([sbrunner](https://github.com/sbrunner)) - -#### :wrench: Build, CI, Tests, Code style - -- Typo [\#113](https://github.com/camptocamp/jsonschema-gentypes/pull/113) ([sbrunner](https://github.com/sbrunner)) -- Upgrade with pyupgrade [\#46](https://github.com/camptocamp/jsonschema-gentypes/pull/46) ([sbrunner](https://github.com/sbrunner)) -- Mark the package as typed [\#17](https://github.com/camptocamp/jsonschema-gentypes/pull/17) ([sbrunner](https://github.com/sbrunner)) - -#### :package: Dependencies update - -- Bump requests from 2.26.0 to 2.27.1 [\#143](https://github.com/camptocamp/jsonschema-gentypes/pull/143) ([dependabot[bot]](https://github.com/apps/dependabot)) -- Bump isort from 4.3.21 to 5.10.1 [\#142](https://github.com/camptocamp/jsonschema-gentypes/pull/142) ([dependabot[bot]](https://github.com/apps/dependabot)) -- Bump flake8 from 3.8.4 to 3.9.2 [\#141](https://github.com/camptocamp/jsonschema-gentypes/pull/141) ([dependabot[bot]](https://github.com/apps/dependabot)) -- Bump black from 21.10b0 to 22.1.0 [\#139](https://github.com/camptocamp/jsonschema-gentypes/pull/139) ([dependabot[bot]](https://github.com/apps/dependabot)) -- Bump pytest from 6.2.5 to 7.0.0 [\#138](https://github.com/camptocamp/jsonschema-gentypes/pull/138) ([dependabot[bot]](https://github.com/apps/dependabot)) -- Bump c2cciutils from 1.1.dev20210709152623 to 1.1.dev20220203110559 [\#136](https://github.com/camptocamp/jsonschema-gentypes/pull/136) ([dependabot[bot]](https://github.com/apps/dependabot)) -- Bump prospector from 1.3.1 to 1.6.0 [\#129](https://github.com/camptocamp/jsonschema-gentypes/pull/129) ([dependabot[bot]](https://github.com/apps/dependabot)) -- Bump jsonschema from 4.1.0 to 4.4.0 [\#128](https://github.com/camptocamp/jsonschema-gentypes/pull/128) ([dependabot[bot]](https://github.com/apps/dependabot)) -- Bump pipenv from 2021.11.15 to 2022.1.8 [\#127](https://github.com/camptocamp/jsonschema-gentypes/pull/127) ([dependabot[bot]](https://github.com/apps/dependabot)) -- Bump mypy from 0.812 to 0.931 [\#126](https://github.com/camptocamp/jsonschema-gentypes/pull/126) ([dependabot[bot]](https://github.com/apps/dependabot)) -- Bump pyupgrade from 2.29.0 to 2.31.0 [\#124](https://github.com/camptocamp/jsonschema-gentypes/pull/124) ([dependabot[bot]](https://github.com/apps/dependabot)) -- Bump pipenv from 2021.11.9 to 2021.11.15 [\#105](https://github.com/camptocamp/jsonschema-gentypes/pull/105) ([dependabot[bot]](https://github.com/apps/dependabot)) -- Bump pipenv from 2021.5.29 to 2021.11.9 [\#104](https://github.com/camptocamp/jsonschema-gentypes/pull/104) ([dependabot[bot]](https://github.com/apps/dependabot)) -- Bump black from 21.9b0 to 21.10b0 [\#100](https://github.com/camptocamp/jsonschema-gentypes/pull/100) ([dependabot[bot]](https://github.com/apps/dependabot)) -- Bump jsonschema from 4.0.1 to 4.1.0 [\#93](https://github.com/camptocamp/jsonschema-gentypes/pull/93) ([dependabot[bot]](https://github.com/apps/dependabot)) -- Bump pytest-cov from 2.12.1 to 3.0.0 [\#88](https://github.com/camptocamp/jsonschema-gentypes/pull/88) ([dependabot[bot]](https://github.com/apps/dependabot)) -- Bump jsonschema from 4.0.0 to 4.0.1 [\#87](https://github.com/camptocamp/jsonschema-gentypes/pull/87) ([dependabot[bot]](https://github.com/apps/dependabot)) -- Bump jsonschema from 3.2.0 to 4.0.0 [\#86](https://github.com/camptocamp/jsonschema-gentypes/pull/86) ([dependabot[bot]](https://github.com/apps/dependabot)) -- Bump pyupgrade from 2.28.1 to 2.29.0 [\#85](https://github.com/camptocamp/jsonschema-gentypes/pull/85) ([dependabot[bot]](https://github.com/apps/dependabot)) -- Bump pyupgrade from 2.28.0 to 2.28.1 [\#84](https://github.com/camptocamp/jsonschema-gentypes/pull/84) ([dependabot[bot]](https://github.com/apps/dependabot)) -- Bump pyupgrade from 2.27.0 to 2.28.0 [\#83](https://github.com/camptocamp/jsonschema-gentypes/pull/83) ([dependabot[bot]](https://github.com/apps/dependabot)) -- Bump pyupgrade from 2.26.0.post1 to 2.27.0 [\#82](https://github.com/camptocamp/jsonschema-gentypes/pull/82) ([dependabot[bot]](https://github.com/apps/dependabot)) -- Bump pyupgrade from 2.26.0 to 2.26.0.post1 [\#79](https://github.com/camptocamp/jsonschema-gentypes/pull/79) ([dependabot[bot]](https://github.com/apps/dependabot)) -- Bump unidecode from 1.3.1 to 1.3.2 [\#78](https://github.com/camptocamp/jsonschema-gentypes/pull/78) ([dependabot[bot]](https://github.com/apps/dependabot)) -- Bump black from 21.8b0 to 21.9b0 [\#76](https://github.com/camptocamp/jsonschema-gentypes/pull/76) ([dependabot[bot]](https://github.com/apps/dependabot)) -- Bump pyupgrade from 2.25.0 to 2.26.0 [\#74](https://github.com/camptocamp/jsonschema-gentypes/pull/74) ([dependabot[bot]](https://github.com/apps/dependabot)) -- Bump unidecode from 1.3.0 to 1.3.1 [\#73](https://github.com/camptocamp/jsonschema-gentypes/pull/73) ([dependabot[bot]](https://github.com/apps/dependabot)) -- Bump unidecode from 1.2.0 to 1.3.0 [\#72](https://github.com/camptocamp/jsonschema-gentypes/pull/72) ([dependabot[bot]](https://github.com/apps/dependabot)) -- Bump pytest from 6.2.4 to 6.2.5 [\#68](https://github.com/camptocamp/jsonschema-gentypes/pull/68) ([dependabot[bot]](https://github.com/apps/dependabot)) -- Bump black from 21.7b0 to 21.8b0 [\#66](https://github.com/camptocamp/jsonschema-gentypes/pull/66) ([dependabot[bot]](https://github.com/apps/dependabot)) -- Bump pyupgrade from 2.24.0 to 2.25.0 [\#65](https://github.com/camptocamp/jsonschema-gentypes/pull/65) ([dependabot[bot]](https://github.com/apps/dependabot)) -- Bump pyupgrade from 2.23.3 to 2.24.0 [\#63](https://github.com/camptocamp/jsonschema-gentypes/pull/63) ([dependabot[bot]](https://github.com/apps/dependabot)) -- Bump pyupgrade from 2.23.2 to 2.23.3 [\#61](https://github.com/camptocamp/jsonschema-gentypes/pull/61) ([dependabot[bot]](https://github.com/apps/dependabot)) -- Bump pyupgrade from 2.23.1 to 2.23.2 [\#60](https://github.com/camptocamp/jsonschema-gentypes/pull/60) ([dependabot[bot]](https://github.com/apps/dependabot)) -- Bump pyupgrade from 2.23.0 to 2.23.1 [\#58](https://github.com/camptocamp/jsonschema-gentypes/pull/58) ([dependabot[bot]](https://github.com/apps/dependabot)) -- Bump pyupgrade from 2.21.2 to 2.23.0 [\#56](https://github.com/camptocamp/jsonschema-gentypes/pull/56) ([dependabot[bot]](https://github.com/apps/dependabot)) -- Bump pyupgrade from 2.21.1 to 2.21.2 [\#55](https://github.com/camptocamp/jsonschema-gentypes/pull/55) ([dependabot[bot]](https://github.com/apps/dependabot)) -- Bump black from 21.6b0 to 21.7b0 [\#54](https://github.com/camptocamp/jsonschema-gentypes/pull/54) ([dependabot[bot]](https://github.com/apps/dependabot)) -- Bump pyupgrade from 2.21.0 to 2.21.1 [\#53](https://github.com/camptocamp/jsonschema-gentypes/pull/53) ([dependabot[bot]](https://github.com/apps/dependabot)) -- Bump requests from 2.25.1 to 2.26.0 [\#52](https://github.com/camptocamp/jsonschema-gentypes/pull/52) ([dependabot[bot]](https://github.com/apps/dependabot)) -- Bump pyupgrade from 2.20.0 to 2.21.0 [\#50](https://github.com/camptocamp/jsonschema-gentypes/pull/50) ([dependabot[bot]](https://github.com/apps/dependabot)) -- Bump c2cciutils from 1.1.dev20210701074602 to 1.1.dev20210709152623 [\#49](https://github.com/camptocamp/jsonschema-gentypes/pull/49) ([dependabot[bot]](https://github.com/apps/dependabot)) -- Bump pyupgrade from 2.19.4 to 2.20.0 [\#48](https://github.com/camptocamp/jsonschema-gentypes/pull/48) ([dependabot[bot]](https://github.com/apps/dependabot)) -- Bump c2cciutils from 1.1.dev20210629154910 to 1.1.dev20210701074602 [\#47](https://github.com/camptocamp/jsonschema-gentypes/pull/47) ([dependabot[bot]](https://github.com/apps/dependabot)) -- Bump c2cciutils from 1.1.dev20210623154317 to 1.1.dev20210629154910 [\#45](https://github.com/camptocamp/jsonschema-gentypes/pull/45) ([dependabot[bot]](https://github.com/apps/dependabot)) -- Bump c2cciutils from 1.1.dev20210617081616 to 1.1.dev20210623154317 [\#44](https://github.com/camptocamp/jsonschema-gentypes/pull/44) ([dependabot[bot]](https://github.com/apps/dependabot)) -- Bump c2cciutils from 1.1.dev20210615102932 to 1.1.dev20210617081616 [\#42](https://github.com/camptocamp/jsonschema-gentypes/pull/42) ([dependabot[bot]](https://github.com/apps/dependabot)) -- Bump c2cciutils from 1.1.dev20210614101225 to 1.1.dev20210615102932 [\#41](https://github.com/camptocamp/jsonschema-gentypes/pull/41) ([dependabot[bot]](https://github.com/apps/dependabot)) -- Bump c2cciutils from 1.1.dev20210604063451 to 1.1.dev20210614101225 [\#40](https://github.com/camptocamp/jsonschema-gentypes/pull/40) ([dependabot[bot]](https://github.com/apps/dependabot)) -- Bump black from 21.5b2 to 21.6b0 [\#39](https://github.com/camptocamp/jsonschema-gentypes/pull/39) ([dependabot[bot]](https://github.com/apps/dependabot)) -- Bump c2cciutils from 1.1.dev20210511092229 to 1.1.dev20210604063451 [\#28](https://github.com/camptocamp/jsonschema-gentypes/pull/28) ([dependabot[bot]](https://github.com/apps/dependabot)) -- Bump pytest-cov from 2.12.0 to 2.12.1 [\#22](https://github.com/camptocamp/jsonschema-gentypes/pull/22) ([dependabot[bot]](https://github.com/apps/dependabot)) -- Bump black from 21.5b1 to 21.5b2 [\#21](https://github.com/camptocamp/jsonschema-gentypes/pull/21) ([dependabot[bot]](https://github.com/apps/dependabot)) -- Bump pipenv from 2020.11.15 to 2021.5.29 [\#20](https://github.com/camptocamp/jsonschema-gentypes/pull/20) ([dependabot[bot]](https://github.com/apps/dependabot)) -- Bump pytest-cov from 2.11.1 to 2.12.0 [\#14](https://github.com/camptocamp/jsonschema-gentypes/pull/14) ([dependabot[bot]](https://github.com/apps/dependabot)) - -## [0.9.4](https://github.com/camptocamp/jsonschema-gentypes/tree/0.9.4) (2021-06-09) - -[Full Changelog](https://github.com/camptocamp/jsonschema-gentypes/compare/0.9.3...0.9.4) - -## [0.9.3](https://github.com/camptocamp/jsonschema-gentypes/tree/0.9.3) (2021-06-04) - -[Full Changelog](https://github.com/camptocamp/jsonschema-gentypes/compare/0.9.2...0.9.3) - -## [0.9.2](https://github.com/camptocamp/jsonschema-gentypes/tree/0.9.2) (2021-06-02) - -[Full Changelog](https://github.com/camptocamp/jsonschema-gentypes/compare/0.9.1...0.9.2) - -## [0.9.1](https://github.com/camptocamp/jsonschema-gentypes/tree/0.9.1) (2021-06-02) - -[Full Changelog](https://github.com/camptocamp/jsonschema-gentypes/compare/0.9.0...0.9.1) - -## [0.9.0](https://github.com/camptocamp/jsonschema-gentypes/tree/0.9.0) (2021-05-12) - -[Full Changelog](https://github.com/camptocamp/jsonschema-gentypes/compare/f4dcea5b6cb02a1acf48ff893f2f3b5825f2a538...0.9.0) - -#### :package: Dependencies update - -- Bump c2cciutils from 1.1.dev20210504062412 to 1.1.dev20210511092229 [\#13](https://github.com/camptocamp/jsonschema-gentypes/pull/13) ([dependabot[bot]](https://github.com/apps/dependabot)) -- Bump pytest from 6.2.3 to 6.2.4 [\#12](https://github.com/camptocamp/jsonschema-gentypes/pull/12) ([dependabot[bot]](https://github.com/apps/dependabot)) -- Bump c2cciutils from 1.1.dev20210426091625 to 1.1.dev20210504062412 [\#4](https://github.com/camptocamp/jsonschema-gentypes/pull/4) ([dependabot[bot]](https://github.com/apps/dependabot)) - -**Merged pull requests:** - -- First [\#3](https://github.com/camptocamp/jsonschema-gentypes/pull/3) ([sbrunner](https://github.com/sbrunner)) - -\* _This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)_