Skip to content

v1.1.0

Choose a tag to compare

@github-actions github-actions released this 23 Jun 11:57
Immutable release. Only release title and notes can be modified.
v1.1.0
f2dd80b

What's Changed

  • docs: update README workflow guidance by @jfut in #1
  • ci: sign RPM artifacts during release by @jfut in #2
  • feat: add short name option for add command by @jfut in #3
  • feat: switch config commands to global and repo by @jfut in #4

⚠️Breaking Changes

Configuration commands now use explicit global and repo namespaces.

The old config, top-level set, top-level unset, and top-level show commands have been removed. Use dnf-anyrepo global ... for global settings and dnf-anyrepo repo ... for repository-specific settings.

  • dnf-anyrepo config ... has been replaced with dnf-anyrepo global ...
  • dnf-anyrepo set NAME ... has been replaced with dnf-anyrepo repo set NAME ...
  • dnf-anyrepo unset NAME ... has been replaced with dnf-anyrepo repo unset NAME ...
  • dnf-anyrepo show NAME has been replaced with dnf-anyrepo repo show NAME

Examples:

dnf-anyrepo global show
dnf-anyrepo global set minimum_release_age 1d
dnf-anyrepo global unset minimum_release_age

dnf-anyrepo repo show prec
dnf-anyrepo repo set prec minimum_release_age 30m
dnf-anyrepo repo unset prec minimum_release_age

Full Changelog: v1.0.0...v1.1.0