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 0.62 #283

Merged
merged 3 commits into from
Dec 7, 2020
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
7 changes: 6 additions & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,10 @@ ensure that bugs won't resurface in the future.
`perl-SGMLSpm perl-TermReadKey perl-Text-WrapI18N perl-Module-Build
perl-Test-Simple perl-Unicode-LineBreak perl-HTML-TokeParser-Simple
docbook-dtds`
- On openSUSE Leap 15.2:
`perl-SGML-Parser-OpenSP perl-TermReadKey perl-Text-WrapI18N perl-Module-Build
perl-Test-Simple perl-Unicode-LineBreak perl-HTML-TokeParser-Simple
docbook-dtds`

When writing or improving a test, you probably want to select the test
to run, and make it verbose. The tests are executed from the "_t_"
Expand Down Expand Up @@ -292,10 +296,11 @@ Here is the checklist of things to remember when releasing po4a:
- Bump the version number in lib/Locale/Po4a/TransTractor.pm and
regenerate the building script: `perl Build.PL`
- Check that `./Build test` reports no error.
- Generate translation statistics: `./Build postats`
- Check NEWS
- It documents all recent changes found in git logs.
- It contains a release name and a release date.
- It contains the translation statistics.
- It contains the translation statistics. Paste here the output from the command above.
- Build the archive: `./Build dist`
- Interrupt it if the MANIFEST is out of sync, and then fix it by
adding the missing files to MANIFEST (or MANIFEST.SKIP if they
Expand Down
10 changes: 5 additions & 5 deletions META.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
],
"meta-spec" : {
"url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec",
"version" : 2
"version" : "2"
},
"name" : "po4a",
"prereqs" : {
Expand Down Expand Up @@ -108,7 +108,7 @@
},
"Locale::Po4a::TransTractor" : {
"file" : "lib/Locale/Po4a/TransTractor.pm",
"version" : "0.61"
"version" : "0.62"
},
"Locale::Po4a::Wml" : {
"file" : "lib/Locale/Po4a/Wml.pm"
Expand All @@ -126,9 +126,9 @@
"release_status" : "stable",
"resources" : {
"license" : [
"http://www.gnu.org/licenses/old-licenses/gpl-1.0.txt"
"http://opensource.org/licenses/gpl-license.php"
]
},
"version" : "0.61",
"x_serialization_backend" : "JSON::PP version 4.02"
"version" : "0.62",
"x_serialization_backend" : "JSON::PP version 2.27400_02"
}
18 changes: 17 additions & 1 deletion NEWS
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ user-visible changes while the day to day changes are in the git logs.
__ __/ _ \ / /_|___ \
\ \ / / | | | '_ \ __) |
\ V /| |_| | (_) / __/
\_/ \___(_)___/_____| (not released)
\_/ \___(_)___/_____|

po4a tool:
* Improve po_paths on misconfigurations, improve doc and error messages.
Expand Down Expand Up @@ -41,7 +41,23 @@ Translations:
* Updated: Ukrainian, thanks Yuri Chornoivan (українська).

Status of the binary translation:
13 languages = 100%: de, es, fr, hr, hu, it, nb, nl, pt, pt_BR,
sr_Cyrl, uk, zh_CN.
1 language >= 90%: ru (91%).
11 languages >= 50%: cs (61%), da (62%), eo (59%), et (66%), eu (60%),
id (61%), ja (66%), pl (66%), sl (59%), sv (64%),
vi (66%).
1 language >= 33%: ca (48%).
5 starting languages: af (7%), ar (14%), kn (7%), ko (19%), zh_HK (3%).

Status of the documentation translation:
4 languages = 100%: de, fr, pt_BR, uk.
4 languages >= 95%: nl (99%), pt (99%), sr_Cyrl (99%), zh_CHS (99%).
1 language >= 80%: es (80%).
2 languages >= 70%: ja (73%), pl (73%).
2 languages >= 50%: it (64%), ru (61%).
1 language >= 33%: ca (47%).
4 starting languages: eo (2%), hr (0%), hu (0%), nb (1%).

=======================================================================
___ __ _
Expand Down
2 changes: 1 addition & 1 deletion lib/Locale/Po4a/TransTractor.pm
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ use warnings;

use subs qw(makespace);
use vars qw($VERSION @ISA @EXPORT);
$VERSION = "0.62-alpha";
$VERSION = "0.62";
@ISA = qw(DynaLoader);
@EXPORT = qw(new process translate
read write readpo writepo
Expand Down