Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

pb/bump #235

Merged
merged 2 commits into from
Oct 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,18 @@
## [Ongoing](https://github.com/archlinux-downgrade/downgrade/compare/v11.3.0...main)
## [Ongoing](https://github.com/archlinux-downgrade/downgrade/compare/v11.4.0...main)

See [issues](https://github.com/archlinux-downgrade/downgrade/issues)

## [v11.4.0](https://github.com/archlinux-downgrade/downgrade/compare/v11.3.0...v11.4.0)

- [NEW] Add `--unignore` to reverse `IgnorePkg` additions
- [NEW] Add `--latest` / `--oldest` to automate package selection (@krumelmonster)
- [NEW] Add `--prefer-cache` to further automate (@krumelmonster)

## [v11.3.0](https://github.com/archlinux-downgrade/downgrade/compare/v11.2.1...v11.3.0)

- [NEW] Add `--ignore` option to control ignore behavior (@lilydjwg)
- [NEW] Zsh completion now uses cache (@lilydjwg)
- [FIX] zh_CN translations now have spaces between Chinese and English (@lilydjwg)
- [FIX] `zh_CN` translations now have spaces between Chinese and English (@lilydjwg)
- [FIX] Fix typo in ZSH completions (@felixonmars)

## [v11.2.1](https://github.com/archlinux-downgrade/downgrade/compare/v11.2.0...v11.2.1)
Expand Down
2 changes: 1 addition & 1 deletion bin/downgrade
Original file line number Diff line number Diff line change
Expand Up @@ -529,7 +529,7 @@ DOWNGRADE_FROM_ALA=1
DOWNGRADE_FROM_CACHE=1
DOWNGRADE_MAXDEPTH=1
DOWNGRADE_CONF="/etc/xdg/downgrade/downgrade.conf"
DOWNGRADE_VERSION="11.3.0"
DOWNGRADE_VERSION="11.4.0"
DOWNGRADE_IGNORE="prompt"
DOWNGRADE_TO_LATEST=0
DOWNGRADE_TO_OLDEST=0
Expand Down
13 changes: 4 additions & 9 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -47,12 +47,7 @@ _manpage md:
--output "doc/$(echo '{{md}}' | sed 's/.md$//')" \
'doc/{{md}}'

# TODO
# AUR_RELEASE_OPTIONS ?=

# .PHONY: release
# release: test
# [ -n "$(VERSION)" ]
# git tag -s -m "v$(VERSION)" "v$(VERSION)"
# git push --follow-tags
# aur-release $(AUR_RELEASE_OPTIONS) downgrade "$(VERSION)"
release:
git tag --sign --message '{{version}}' '{{version}}'
git push --follow-tags
aur-release downgrade '{{version}}'
Loading