Skip to content

Commit

Permalink
docs: Release 3.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
nijel committed Feb 25, 2022
1 parent c8384e8 commit 1904187
Show file tree
Hide file tree
Showing 6 changed files with 55 additions and 6 deletions.
2 changes: 1 addition & 1 deletion docs/conf.py
Expand Up @@ -24,7 +24,7 @@
copyright = "2002-2022, Translate"

# The short X.Y version.
version = "3.5.3"
version = "3.6.0"

# The full version, including alpha/beta/rc tags
release = version
Expand Down
6 changes: 3 additions & 3 deletions docs/developers/releasing.rst
Expand Up @@ -52,14 +52,14 @@ done generically like this:

.. code-block:: console
$ git log $previous_version..HEAD > docs/releases/$version.rst
$ git log $(git describe --tags --abbrev=0)..HEAD > docs/releases/$version.rst
Or a more specific example:

.. code-block:: console
$ git log 1.10.0..HEAD > docs/releases/1.11.0-rc1.rst
$ git log $(git describe --tags --abbrev=0)..HEAD > docs/releases/3.6.0.rst
Edit this file. You can use the commits as a guide to build up the release
Expand All @@ -86,7 +86,7 @@ We create a list of contributors using this command:

.. code-block:: console
$ git log 1.10.0..HEAD --format='%aN, ' | awk '{arr[$0]++} END{for (i in arr){print arr[i], i;}}' | sort -rn | cut -d\ -f2-
$ git log $(git describe --tags --abbrev=0)..HEAD --format='%aN, ' | awk '{arr[$0]++} END{for (i in arr){print arr[i], i;}}' | sort -rn | cut -d\ -f2-
.. _releasing#up-version-numbers:
Expand Down
48 changes: 48 additions & 0 deletions docs/releases/3.6.0.rst
@@ -0,0 +1,48 @@
Translate Toolkit 3.6.0
***********************

*Released on 25 February 2022*

This release contains improvements and bug fixes.

Changes
=======

Formats and Converters
----------------------

- PO

- Fixed line wrapping with full width characters

- JSON

- Improved nested files serialization and parsing

- Properties

- Improved handling of [] in gwt

- XLIFF

- Improved element cleanup on update

- Base

- Switch to charset-normalizer from chardet for more reliable detection

General
-------

- Code cleanups
- Dropped support for Python 3.6
- Added support for Python 3.10
- Cleanup of external links in the documentation

Contributors
============

This release was made possible by the following people:

Michal Čihař, Nick Schonning

1 change: 1 addition & 0 deletions docs/releases/index.rst
Expand Up @@ -17,6 +17,7 @@ Final releases
.. toctree::
:maxdepth: 1

3.6.0 <3.6.0>
3.5.3 <3.5.3>
3.5.2 <3.5.2>
3.5.1 <3.5.1>
Expand Down
2 changes: 1 addition & 1 deletion tests/cli/data/test_pofilter_manpage/stdout.txt
@@ -1,5 +1,5 @@
.\" Autogenerated manpage
.TH pofilter 1 "Translate Toolkit 3.5.3" "" "Translate Toolkit 3.5.3"
.TH pofilter 1 "Translate Toolkit 3.6.0" "" "Translate Toolkit 3.6.0"
.SH NAME
pofilter \- Perform quality checks on Gettext PO, XLIFF and TMX localization files.
.SH SYNOPSIS
Expand Down
2 changes: 1 addition & 1 deletion translate/__version__.py
Expand Up @@ -18,7 +18,7 @@

"""This file contains the version of the Translate Toolkit."""

ver = (3, 5, 3)
ver = (3, 6, 0)
"""Machine readable version number. Used by tools that need to adjust code
paths based on a Translate Toolkit release number."""

Expand Down

0 comments on commit 1904187

Please sign in to comment.