Skip to content

Commit

Permalink
release 4.0.0rc1
Browse files Browse the repository at this point in the history
  • Loading branch information
sammdot committed Sep 26, 2023
1 parent 0d75d42 commit e030af9
Show file tree
Hide file tree
Showing 12 changed files with 45 additions and 11 deletions.
43 changes: 43 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,46 @@
# v4.0.0rc1 (2023-09-26)



## Features

### Core

- updated config to use tox4 (#1592)
- Implement first-up chord send for keyboard machine. (#1611)

### User Interface

- Added Traditional Chinese (zh-TW) translation. (#1404)

### Linux

- Update GitHub Actions from Ubuntu 18.04 to 22.04. (#1597)

### macOS

- Update GitHub Actions from macOS 10.15 to 12. (#1598)
- Changes the Plover icon on macOS to match Big Sur-style icons. (#1632)

### Windows

- Update GitHub Actions from Windows 2019 to 2022. (#1598)

## Bugfixes

### User Interface

- Fix "add translation" dialog ignoring the stylesheet's background color for the translation and stroke text. (#1571)

### Windows

- Fixed an issue which caused tests to fail on windows due to case sensitive filepaths. (#1599)

## API

No significant changes.


# v4.0.0.dev12 (2022-08-09)

## Features
Expand Down
1 change: 0 additions & 1 deletion news.d/bugfix/1571.ui.md

This file was deleted.

1 change: 0 additions & 1 deletion news.d/bugfix/1599.windows.md

This file was deleted.

1 change: 0 additions & 1 deletion news.d/feature/1404.ui.md

This file was deleted.

1 change: 0 additions & 1 deletion news.d/feature/1592.core.md

This file was deleted.

1 change: 0 additions & 1 deletion news.d/feature/1597.linux.md

This file was deleted.

1 change: 0 additions & 1 deletion news.d/feature/1598.osx.md

This file was deleted.

1 change: 0 additions & 1 deletion news.d/feature/1598.windows.md

This file was deleted.

1 change: 0 additions & 1 deletion news.d/feature/1611.core.md

This file was deleted.

1 change: 0 additions & 1 deletion news.d/feature/1632.osx.md

This file was deleted.

2 changes: 1 addition & 1 deletion plover/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# want to translate anyway.
_ = lambda s: s

__version__ = '4.0.0.dev12'
__version__ = '4.0.0rc1'
__copyright__ = '(C) Open Steno Project'
__url__ = 'http://www.openstenoproject.org/'
__download_url__ = 'http://www.openstenoproject.org/plover'
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def get_version():
if not os.path.exists('.git'):
return None
version = subprocess.check_output('git describe --tags --match=v[0-9]*'.split()).strip().decode()
m = re.match(r'^v(\d[\d.]*(?:\.dev\d+)?)(-\d+-g[a-f0-9]*)?$', version)
m = re.match(r'^v(\d[\d.]*(?:(?:\.dev|rc)\d+)?)(-\d+-g[a-f0-9]*)?$', version)
assert m is not None, version
version = m.group(1)
if m.group(2) is not None:
Expand Down

0 comments on commit e030af9

Please sign in to comment.