Skip to content

Commit

Permalink
chore(release): 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bskim45 committed May 8, 2022
1 parent 0593613 commit dea5a33
Show file tree
Hide file tree
Showing 6 changed files with 46 additions and 8 deletions.
1 change: 1 addition & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ repos:
hooks:
- id: check-yaml
- id: end-of-file-fixer
exclude: version
- id: trailing-whitespace
- id: check-executables-have-shebangs

Expand Down
24 changes: 22 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,35 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

## [1.1.0](https://github.com/bskim45/alfred-coin-ticker/compare/1.0.1...1.1.0) (2022-02-02)
## [2.0.0](https://github.com/bskim45/alfred-coin-ticker/compare/1.1.0...2.0.0) (2022-05-08)

### Breaking changes

Python 2 has been removed from macOS 12.3 Monterey,
and default system Python is now Python 3.8.
(https://www.alfredapp.com/help/kb/python-2-monterey/)

This is first version that supports macOS 12.3+ (Python 3.8+).

Please note that **Python 2 and Alfred 3 is no longer supported.**
If you are using macOS 12.2 or below, please do not upgrade to 2.0.0+
and keep using 1.1.0.

Special thanks to @NorthIsUp for porting [alfred-workflow](https://github.com/NorthIsUp/alfred-workflow-py3) to Python 3.

### Features

* support python3 (macOS 12.3+) ([#2](https://github.com/bskim45/alfred-coin-ticker/issues/2)) ([0593613](https://github.com/bskim45/alfred-coin-ticker/commit/0593613b9e279e63148f4bdbdfcf2071121ddea0))


## [1.1.0](https://github.com/bskim45/alfred-coin-ticker/compare/1.0.1...1.1.0) (2022-02-02)

### Features

* add modifier actions to ticker items ([f90c62a](https://github.com/bskim45/alfred-coin-ticker/commit/f90c62ac97f586511e09c4decab148afb740ed74))

### [1.0.1](https://github.com/bskim45/alfred-coin-ticker/compare/1.0.0...1.0.1) (2022-01-29)

### [1.0.1](https://github.com/bskim45/alfred-coin-ticker/compare/1.0.0...1.0.1) (2022-01-29)

### Bug Fixes

Expand Down
23 changes: 20 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,20 @@
An [Alfred Workflow](http://www.alfredapp.com/) that provides the current price
and status about cryptocurrency from [cryptocompare.com].

Supports Alfred 3 and Alfred 4 on macOS 10.7+ (Python 2.7).
Supports Alfred 4 on macOS 12.3+ (Python 3.8+).

## ⚠️ Using this workflow on macOS 12.3+ Monterey
[2.0.0](https://github.com/bskim45/alfred-coin-ticker/releases/tag/2.0.0)
is the first version that supports macOS 12.3+ (Python 3.8+).
Please upgrade your workflow version to 2.0.0 or later
if you are using macOS 12.3+.

Feel free to open issues for any troubles regarding this change.

## ⚠️ Note to macOS 12.2 or below users
[1.1.0](https://github.com/bskim45/alfred-coin-ticker/releases/tag/1.1.0)
is the last version that supports macOS 12.2 and below (Python 2).
Please do not upgrade to 2.x version if you are using macOS 12.2 or below.

## Install

Expand Down Expand Up @@ -52,9 +65,13 @@ Please use with caution.

The code is released under the MIT license. See [LICENSE](LICENSE) for details.

Awesome [alfred-workflow](https://github.com/deanishe/alfred-workflow) library
by [@deanishe](https://github.com/deanishe) is also released under
Awesome [alfred-workflow](https://github.com/NorthIsUp/alfred-workflow-py3)
library by [@NorthIsUp](https://github.com/NorthIsUp) is also released under
[MIT License](alfred-workflow/LICENCE.txt).

[alfred-workflow](https://github.com/NorthIsUp/alfred-workflow) is
originally created by [@deanishe](https://github.com/deanishe)
and ported to Python 3 by [@NorthIsUp](https://github.com/NorthIsUp).

[cryptocompare.com]: https://www.cryptocompare.com/
[latest release]: https://github.com/bskim45/alfred-coin-ticker/releases/latest/download/alfred-coin-ticker.alfredworkflow
2 changes: 1 addition & 1 deletion info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@
<key>variablesdontexport</key>
<array/>
<key>version</key>
<string>1.1.0</string>
<string>2.0.0</string>
<key>webaddress</key>
<string>https://github.com/bskim45/alfred-coin-ticker</string>
</dict>
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "alfred-coin-ticker"
version = "1.1.0"
version = "2.0.0"
description = ""
authors = ["Bumsoo Kim <[email protected]>"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.1.0
2.0.0

0 comments on commit dea5a33

Please sign in to comment.