Skip to content

Commit

Permalink
bump: version 7.1.0a0 → 7.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
yajo committed Apr 7, 2023
1 parent b919a7b commit 91f21c7
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 1 deletion.
46 changes: 46 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,52 @@ All notable changes to this project will be documented in this file. This projec
adheres to [PEP 440](https://www.python.org/dev/peps/pep-0440/) versioning schema, and
the changelog itself conforms to [Keep A Changelog](https://keepachangelog.com/).

## v7.1.0 (2023-04-07)

### Feat

- include git in flake app
- support preserving symlinks when copying templates (#938)
- allow imports in inline templates (#986)
- properly support update in repo subdirectory (#1069)
- allow templating `_answers_file` setting (#1027)
- let answers file exist in a subdirectory
- validate answers given via CLI/API
- exclude nothing by default when using subdirectory
- add native OS directory separator variable in `_copier_conf.sep` to allow generating
dynamic directory structures
- nix support

### Fix

- include dirty local changes when copying HEAD
- require answer for questions without default value (#958)
- **cleanup**: don't clean up local template in parent folder
- delete conditionally created file when answer changes (#982)
- properly support diffs over updates with new interactive answers
- ignore Git hooks during project update (#1066)
- properly support diffs over updates with new answers
- skip tasks in pretend mode (#970)
- parse CLI data using question's answer parser
- don't set YAML `!include` constructor globally (#947)
- **cli**: use `--conflict` flag only in `copier update` subcommand
- ignore template repo tags that aren't valid PEP 440 versions
- --skip option was ignored (#966)
- Remove useless is_dir check
- don't attempt to render a file if its name is empty
- warn users against using shallow clones as template source

### Refactor

- **tests**: remove unknown timeout marker
- deduplicate code
- remove unused method argument
- simplify casting boolean question settings
- remove useless code related to not asking a question
- **typing**: use `Mapping` instead of `ChainMap` type
- move unrelated code out of try-except block
- **inline**: smarter inline conflict markers algorithm

## v7.1.0a0 (2022-12-29)

### Feat
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ annotated_tag = true
changelog_incremental = true
tag_format = "v$version"
update_changelog_on_bump = true
version = "7.1.0a0"
version = "7.1.0"

[build-system]
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning"]
Expand Down

2 comments on commit 91f21c7

@sisp
Copy link
Member

@sisp sisp commented on 91f21c7 Apr 7, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@yajo Just in case you haven't noticed, this release does not appear under releases of this GitHub project for some reason 🤔.

@yajo
Copy link
Member Author

@yajo yajo commented on 91f21c7 Apr 19, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ahm.. those are not automatic when I push tags... let me do it.

Please sign in to comment.