Skip to content

Commit f8bd8f6

Browse files
committed
1.4.0 release
1 parent c32bf95 commit f8bd8f6

File tree

2 files changed

+32
-5
lines changed

2 files changed

+32
-5
lines changed

CHANGELOG.md

Lines changed: 31 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,36 @@
11
# Change Log
22

3+
## [1.4.0](https://github.com/kivy/pyjnius/tree/1.4.0) (2021-08-24)
4+
[Full Changelog](https://github.com/kivy/pyjnius/compare/1.3.0...1.4.0)
5+
6+
**Implemented enhancements:**
7+
- [\#542](https://github.com/kivy/pyjnius/pull/542) Improve performance of byte array parameters
8+
- [\#515](https://github.com/kivy/pyjnius/pull/515) Allow passing Python Lambdas as Java lambdas
9+
- [\#541](https://github.com/kivy/pyjnius/pull/541) Refactor of env.py
10+
11+
**Fixed bugs:**
12+
- [\#549](https://github.com/kivy/pyjnius/pull/549) Fixes #548 JVM options are not correctly set by jnius_config.set_options()
13+
- [\#546](https://github.com/kivy/pyjnius/pull/546) Add in missing assignable check for int parameters etc.
14+
- [\#558](https://github.com/kivy/pyjnius/pull/558) Improve error message on method not found
15+
- [\#567](https://github.com/kivy/pyjnius/pull/567) Fix static methods
16+
- [\#566](https://github.com/kivy/pyjnius/pull/566) fix bug for constuctors with variable arguments
17+
- [\#569](https://github.com/kivy/pyjnius/pull/569) set_resolve_info: replace j_self w/ resolve_static
18+
- [\#595](https://github.com/kivy/pyjnius/pull/595) Use Python standard library `which` instead of OS `which`
19+
20+
**Documentation**
21+
- [\#556](https://github.com/kivy/pyjnius/pull/556) fix link in readme
22+
- [\#572](https://github.com/kivy/pyjnius/pull/572) update readme for python3
23+
- [\#584](https://github.com/kivy/pyjnius/pull/584) Updated android.rst for python3
24+
- [\#565](https://github.com/kivy/pyjnius/pull/565) Update python versions
25+
26+
**CI**
27+
- [\#560](https://github.com/kivy/pyjnius/pull/560) added x86 workflow
28+
- [\#564](https://github.com/kivy/pyjnius/pull/564) run on pull request & add missing badge
29+
- [\#536](https://github.com/kivy/pyjnius/pull/536) add missing architecture for python setup in actions
30+
31+
**Packaging**
32+
- [\#594](https://github.com/kivy/pyjnius/pull/594) Add pyproject.toml to specify Cython as a build requirement
33+
334
## [1.3.0](https://github.com/kivy/pyjnius/tree/1.3.0) (2020-05-03)
435
[Full Changelog](https://github.com/kivy/pyjnius/compare/1.2.1...1.3.0)
536

@@ -237,7 +268,3 @@
237268
**Merged pull requests:**
238269

239270
- small grammatical changes [\#2](https://github.com/kivy/pyjnius/pull/2) ([dekoza](https://github.com/dekoza))
240-
241-
242-
243-
\* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*

jnius/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
All the documentation is available at: http://pyjnius.readthedocs.org
88
'''
99

10-
__version__ = '1.3.0'
10+
__version__ = '1.4.0'
1111

1212
from .env import get_java_setup
1313

0 commit comments

Comments
 (0)