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

Release Printrun 2.2.0 #1460

Merged
merged 1 commit into from
Oct 20, 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
21 changes: 21 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,24 @@
Printrun - 2.2.0
================
Minor release. Added support for Python 3.13.

### New Features

* Added support for Python 3.13 (#1451)
* Replaced module `imghdr` with `puremagic` (#1455)
* Replaced configparser `readfp` with `read_file` (#1428)

### Fixed Bugs

* Regression when dealing with line numbers (#1454)
* Run-time dependencies installation (#1457)
* Correction of type error for G2/G3 arc moves (#1434)

### Administrative

* Simplified file naming for macOS builds (#1432)


Printrun - 2.1.0
================

Expand Down
2 changes: 1 addition & 1 deletion printrun/printcore.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# You should have received a copy of the GNU General Public License
# along with Printrun. If not, see <http://www.gnu.org/licenses/>.

__version__ = "2.1.0"
__version__ = "2.2.0"

import sys
if sys.version_info.major < 3:
Expand Down
Loading