Skip to content

Commit 8f726d5

Browse files
Merge pull request #251 from voxpupuli/rel320
Release 3.2.0
2 parents 18b1065 + b885270 commit 8f726d5

6 files changed

Lines changed: 406 additions & 4 deletions

File tree

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,3 +59,7 @@ private/
5959

6060
# IntelliJ IDEA (IDE) config
6161
.idea/
62+
63+
Gemfile.lock
64+
.vendor
65+
.bundle

CHANGELOG.md

Lines changed: 22 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,23 @@
1-
## Changelog
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
## [3.2.0](https://github.com/voxpupuli/pypuppetdb/tree/3.2.0) (2023-10-08)
6+
7+
[Full Changelog](https://github.com/voxpupuli/pypuppetdb/compare/3.1.0...3.2.0)
8+
9+
**Merged pull requests:**
10+
11+
- CI: Run on PRs and merges [\#252](https://github.com/voxpupuli/pypuppetdb/pull/252) ([bastelfreak](https://github.com/bastelfreak))
12+
- purge not required empty newlines [\#242](https://github.com/voxpupuli/pypuppetdb/pull/242) ([bastelfreak](https://github.com/bastelfreak))
13+
- add dummy CI job we can depend on [\#241](https://github.com/voxpupuli/pypuppetdb/pull/241) ([bastelfreak](https://github.com/bastelfreak))
14+
- add dependabot config [\#240](https://github.com/voxpupuli/pypuppetdb/pull/240) ([bastelfreak](https://github.com/bastelfreak))
15+
- 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))
16+
- 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))
17+
- Modernize the code [\#235](https://github.com/voxpupuli/pypuppetdb/pull/235) ([gdubicki](https://github.com/gdubicki))
18+
19+
## [3.1.0](https://github.com/voxpupuli/pypuppetdb/tree/3.1.0) (2022-10-27)
220

3-
3.1.0
4-
-----
521
- Confirm support for Python 3.11 (final).
622

723
3.0.0
@@ -357,3 +373,6 @@ implemented. That will be the focus of the next release.
357373
-----
358374

359375
Initial release. Implements most of the v2 API.
376+
377+
378+
\* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)*

Gemfile

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# frozen_string_literal: true
2+
3+
source ENV['GEM_SOURCE'] || 'https://rubygems.org'
4+
5+
group :release, optional: true do
6+
gem 'faraday-retry', '~> 2.1', require: false
7+
gem 'github_changelog_generator', '~> 1.16.4', require: false
8+
end

0 commit comments

Comments
 (0)