Skip to content

Commit

Permalink
Release Pext v0.33
Browse files Browse the repository at this point in the history
  • Loading branch information
TheLastProject committed Nov 28, 2022
1 parent 9c140a2 commit d199a0d
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 7 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,17 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## Unreleased
## [0.33] - 2022-11-28
### Packaging changes
- Update Python to 3.11

### API changes
- Bump API version to 0.13.0
- Return instances of Selection class instead of dict

### Fixed
- Launcher icon not working

## [0.32] - 2020-10-31
### Fixed
- Modules with Python dependencies could not install on Debian Buster
Expand Down
6 changes: 3 additions & 3 deletions Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -17,17 +17,17 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleVersion</key>
<string>0.32</string>
<string>0.33</string>
<key>CFBundleShortVersionString</key>
<string>0.32</string>
<string>0.33</string>
<key>LSMinimumSystemVersion</key>
<string>10.7.0</string>
<key>LSUIElement</key>
<false/>
<key>NSHighResolutionCapable</key>
<true/>
<key>NSHumanReadableCopyright</key>
<string>© 2020 Sylvia van Os</string>
<string>© 2022 Sylvia van Os</string>
<key>NSPrincipalClass</key>
<string>NSApplication</string>
<key>LSEnvironment</key>
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Pext

<a href="https://repology.org/metapackage/pext/versions">
<img src="https://repology.org/badge/vertical-allrepos/pext.svg?minversion=0.32" alt="Packaging status" align="right">
<img src="https://repology.org/badge/vertical-allrepos/pext.svg?minversion=0.33" alt="Packaging status" align="right">
</a>

![Lilly the leoger](/assets/logo.png)
Expand Down
2 changes: 1 addition & 1 deletion pext/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.32
0.33
2 changes: 1 addition & 1 deletion pext/helpers/pext_helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"""

from enum import Enum
from typing import List, Optional
from typing import List, Optional # noqa: F401


class Action(Enum):
Expand Down

0 comments on commit d199a0d

Please sign in to comment.