Skip to content

Commit

Permalink
bump: 0.12.0
Browse files Browse the repository at this point in the history
  • Loading branch information
baszalmstra committed Nov 14, 2023
1 parent f839abd commit d257504
Show file tree
Hide file tree
Showing 3 changed files with 114 additions and 1 deletion.
26 changes: 26 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,32 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.12.0] - 2023-11-14

### ✨ Highlights

Adds support for strict priority channel ordering, channel-specific selectors,

### 📃 Details

#### Added

* Add strict channel priority option ([#385](https://github.com/mamba-org/rattler/pull/385))
* Add lock-file forward compatibility error ([#389](https://github.com/mamba-org/rattler/pull/389))
* Add channel priority and channel-specific selectors to solver info ([#394](https://github.com/mamba-org/rattler/pull/394))

#### Changed

* Channel in the `MatchSpec` struct changed to `Channel` type ([#401](https://github.com/mamba-org/rattler/pull/401))

#### Fixed

* Expose previous python version information in transaction ([#384](https://github.com/mamba-org/rattler/pull/384))
* Avoid use of \ in doctest strings, for ide integration ([#387](https://github.com/mamba-org/rattler/pull/387))
* Issue with JLAP using the wrong hash ([#390](https://github.com/mamba-org/rattler/pull/390))
* Use the correct channel in the reason for exclude ([#397](https://github.com/mamba-org/rattler/pull/397))
* Environment activation for windows ([#398](https://github.com/mamba-org/rattler/pull/398))

## [0.11.0] - 2023-10-17

### ✨ Highlights
Expand Down
87 changes: 87 additions & 0 deletions cliff.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,87 @@
# git-cliff ~ default configuration file
# https://git-cliff.org/docs/configuration
#
# Lines starting with "#" are comments.
# Configuration options are organized into tables and keys.
# See documentation for more information on available options.

[changelog]
# changelog header
header = """
# Changelog\n
All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).\n
"""
# template for the changelog body
# https://keats.github.io/tera/docs/#introduction
body = """
{% if version %}\
## [{{ version | trim_start_matches(pat="v") }}] - {{ timestamp | date(format="%Y-%m-%d") }}
{% else %}\
## [Unreleased]
{% endif %}\
### ✨ Highlights
### 📃 Details
{% for group, commits in commits | group_by(attribute="group") %}
#### {{ group | upper_first }}
{% for commit in commits %}
* {{ commit.message | upper_first }}\
{% endfor %}
{% endfor %}\n
"""
# remove the leading and trailing whitespace from the template
trim = true
# changelog footer
footer = """
<!-- generated by git-cliff -->
"""
# postprocessors
postprocessors = [
# { pattern = '<REPO>', replace = "https://github.com/orhun/git-cliff" }, # replace repository URL
]
[git]
# parse the commits based on https://www.conventionalcommits.org
conventional_commits = true
# filter out the commits that are not conventional
filter_unconventional = true
# process each line of a commit as an individual commit
split_commits = false
# regex for preprocessing the commit messages
commit_preprocessors = [
{ pattern = '\((\w+\s)?#([0-9]+)\)', replace = "([#${2}](https://github.com/mamba-org/rattler/pull/${2}))"}, # replace issue numbers
]
# regex for parsing and grouping commits
commit_parsers = [
{ message = "^.*: add", group = "Added" },
{ message = "^.*: support", group = "Added" },
{ message = "^.*: remove", group = "Removed" },
{ message = "^.*: delete", group = "Removed" },
{ message = "^test", group = "Fixed" },
{ message = "^fix", group = "Fixed" },
{ message = "^.*: fix", group = "Fixed" },
{ message = "^chore|ci", skip = true },
{ message = "^.*", group = "Changed" },
]
# protect breaking changes from being skipped due to matching a skipping commit_parser
protect_breaking_commits = false
# filter out the commits that are not matched by commit parsers
filter_commits = false
# regex for matching git tags
tag_pattern = "v[0-9].*"

# regex for skipping tags
skip_tags = "v0.1.0-beta.1"
# regex for ignoring tags
ignore_tags = ""
# sort the tags topologically
topo_order = false
# sort the commits inside sections by oldest/newest order
sort_commits = "oldest"
# limit the number of commits included in the changelog.
# limit_commits = 42
2 changes: 1 addition & 1 deletion pixi.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "rattler"
version = "0.11.0"
version = "0.12.0"
description = "Rust library to install conda environments"
authors = [
"Wolf Vollprecht <[email protected]>",
Expand Down

0 comments on commit d257504

Please sign in to comment.