Skip to content

Commit

Permalink
Merge pull request #251 from voxpupuli/rel320
Browse files Browse the repository at this point in the history
Release 3.2.0
  • Loading branch information
sebastianrakel committed Oct 8, 2023
2 parents 18b1065 + b885270 commit 8f726d5
Show file tree
Hide file tree
Showing 6 changed files with 406 additions and 4 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Expand Up @@ -59,3 +59,7 @@ private/

# IntelliJ IDEA (IDE) config
.idea/

Gemfile.lock
.vendor
.bundle
25 changes: 22 additions & 3 deletions CHANGELOG.md
@@ -1,7 +1,23 @@
## Changelog
# Changelog

All notable changes to this project will be documented in this file.

## [3.2.0](https://github.com/voxpupuli/pypuppetdb/tree/3.2.0) (2023-10-08)

[Full Changelog](https://github.com/voxpupuli/pypuppetdb/compare/3.1.0...3.2.0)

**Merged pull requests:**

- CI: Run on PRs and merges [\#252](https://github.com/voxpupuli/pypuppetdb/pull/252) ([bastelfreak](https://github.com/bastelfreak))
- purge not required empty newlines [\#242](https://github.com/voxpupuli/pypuppetdb/pull/242) ([bastelfreak](https://github.com/bastelfreak))
- add dummy CI job we can depend on [\#241](https://github.com/voxpupuli/pypuppetdb/pull/241) ([bastelfreak](https://github.com/bastelfreak))
- add dependabot config [\#240](https://github.com/voxpupuli/pypuppetdb/pull/240) ([bastelfreak](https://github.com/bastelfreak))
- Update sphinx requirement from \<6.0,\>=4.3 to \>=4.3,\<8.0 [\#239](https://github.com/voxpupuli/pypuppetdb/pull/239) ([dependabot[bot]](https://github.com/apps/dependabot))
- Update urllib3 requirement from \<2.0,\>=1.26 to \>=1.26,\<3.0 [\#238](https://github.com/voxpupuli/pypuppetdb/pull/238) ([dependabot[bot]](https://github.com/apps/dependabot))
- Modernize the code [\#235](https://github.com/voxpupuli/pypuppetdb/pull/235) ([gdubicki](https://github.com/gdubicki))

## [3.1.0](https://github.com/voxpupuli/pypuppetdb/tree/3.1.0) (2022-10-27)

3.1.0
-----
- Confirm support for Python 3.11 (final).

3.0.0
Expand Down Expand Up @@ -357,3 +373,6 @@ implemented. That will be the focus of the next release.
-----

Initial release. Implements most of the v2 API.


\* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)*
8 changes: 8 additions & 0 deletions Gemfile
@@ -0,0 +1,8 @@
# frozen_string_literal: true

source ENV['GEM_SOURCE'] || 'https://rubygems.org'

group :release, optional: true do
gem 'faraday-retry', '~> 2.1', require: false
gem 'github_changelog_generator', '~> 1.16.4', require: false
end

0 comments on commit 8f726d5

Please sign in to comment.