Skip to content

Commit

Permalink
Release 1.1.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
felixfontein committed Oct 22, 2024
1 parent 75be6aa commit 1845685
Show file tree
Hide file tree
Showing 7 changed files with 67 additions and 16 deletions.
33 changes: 28 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,29 +2,52 @@

**Topics**

- <a href="#v1-0-1">v1\.0\.1</a>
- <a href="#v1-1-0">v1\.1\.0</a>
- <a href="#release-summary">Release Summary</a>
- <a href="#minor-changes">Minor Changes</a>
- <a href="#bugfixes">Bugfixes</a>
- <a href="#v1-0-0">v1\.0\.0</a>
- <a href="#v1-0-1">v1\.0\.1</a>
- <a href="#release-summary-1">Release Summary</a>
- <a href="#bugfixes-1">Bugfixes</a>
- <a href="#v1-0-0">v1\.0\.0</a>
- <a href="#release-summary-2">Release Summary</a>

<a id="v1-1-0"></a>
## v1\.1\.0

<a id="release-summary"></a>
### Release Summary

Bugfix and feature release\.

<a id="minor-changes"></a>
### Minor Changes

* Declare support for Python 3\.13 \([https\://github\.com/ansible\-community/antsibull\-fileutils/pull/10](https\://github\.com/ansible\-community/antsibull\-fileutils/pull/10)\)\.
* Rewrite <code>Copier</code> and <code>GitCopier</code> so that both symlinks outside the tree and symlinks inside the tree are handled more correctly\: symlinks inside the tree are kept\, while for symlinks outside the tree the content is copied\. Symlinks are normalized by default\, which makes this behavior similar to ansible\-core\'s behavior in <code>ansible\-galaxy collection build</code>\. Also copying now tries to preserve metadata \([https\://github\.com/ansible\-community/antsibull\-fileutils/pull/8](https\://github\.com/ansible\-community/antsibull\-fileutils/pull/8)\)\.

<a id="bugfixes"></a>
### Bugfixes

* <code>CollectionCopier</code>\'s <code>source\_directory</code> argument now accepts <code>pathlib\.Path</code> objects in addition to <code>str</code> s \([https\://github\.com/ansible\-community/antsibull\-fileutils/pull/6](https\://github\.com/ansible\-community/antsibull\-fileutils/pull/6)\)\.

<a id="v1-0-1"></a>
## v1\.0\.1

<a id="release-summary"></a>
<a id="release-summary-1"></a>
### Release Summary

Bugfix release\.

<a id="bugfixes"></a>
<a id="bugfixes-1"></a>
### Bugfixes

* Remove accidentally left\-in <code>print\(\)</code> statement in <code>antsibull\_fileutils\.io\.write\_file\(\)</code> \([https\://github\.com/ansible\-community/antsibull\-fileutils/pull/5](https\://github\.com/ansible\-community/antsibull\-fileutils/pull/5)\)\.

<a id="v1-0-0"></a>
## v1\.0\.0

<a id="release-summary-1"></a>
<a id="release-summary-2"></a>
### Release Summary

Initial release\.
19 changes: 19 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,25 @@ antsibull-fileutils Release Notes

.. contents:: Topics

v1.1.0
======

Release Summary
---------------

Bugfix and feature release.

Minor Changes
-------------

- Declare support for Python 3.13 (https://github.com/ansible-community/antsibull-fileutils/pull/10).
- Rewrite ``Copier`` and ``GitCopier`` so that both symlinks outside the tree and symlinks inside the tree are handled more correctly: symlinks inside the tree are kept, while for symlinks outside the tree the content is copied. Symlinks are normalized by default, which makes this behavior similar to ansible-core's behavior in ``ansible-galaxy collection build``. Also copying now tries to preserve metadata (https://github.com/ansible-community/antsibull-fileutils/pull/8).

Bugfixes
--------

- ``CollectionCopier``'s ``source_directory`` argument now accepts ``pathlib.Path`` objects in addition to ``str`` s (https://github.com/ansible-community/antsibull-fileutils/pull/6).

v1.0.1
======

Expand Down
20 changes: 20 additions & 0 deletions changelogs/changelog.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,23 @@ releases:
- 1.0.1.yml
- 5-io-print.yml
release_date: '2024-09-13'
1.1.0:
changes:
bugfixes:
- '``CollectionCopier``''s ``source_directory`` argument now accepts ``pathlib.Path``
objects in addition to ``str`` s (https://github.com/ansible-community/antsibull-fileutils/pull/6).'
minor_changes:
- Declare support for Python 3.13 (https://github.com/ansible-community/antsibull-fileutils/pull/10).
- 'Rewrite ``Copier`` and ``GitCopier`` so that both symlinks outside the
tree and symlinks inside the tree are handled more correctly: symlinks inside
the tree are kept, while for symlinks outside the tree the content is copied.
Symlinks are normalized by default, which makes this behavior similar to
ansible-core''s behavior in ``ansible-galaxy collection build``. Also copying
now tries to preserve metadata (https://github.com/ansible-community/antsibull-fileutils/pull/8).'
release_summary: Bugfix and feature release.
fragments:
- 1.1.0.yml
- 6-collection-copier-strpath.yml
- 8-copier.yml
- python-3.13.yml
release_date: '2024-10-22'
1 change: 0 additions & 1 deletion changelogs/fragments/1.1.0.yml

This file was deleted.

2 changes: 0 additions & 2 deletions changelogs/fragments/6-collection-copier-strpath.yml

This file was deleted.

6 changes: 0 additions & 6 deletions changelogs/fragments/8-copier.yml

This file was deleted.

2 changes: 0 additions & 2 deletions changelogs/fragments/python-3.13.yml

This file was deleted.

0 comments on commit 1845685

Please sign in to comment.