Skip to content

Commit cae84af

Browse files
committed
updated changelog
1 parent 901c9d9 commit cae84af

1 file changed

Lines changed: 47 additions & 18 deletions

File tree

CHANGELOG.md

Lines changed: 47 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,17 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
77

88
Previous releases are documented in [github releases](https://github.com/oscarotero/Gettext/releases)
99

10+
## [4.6.0] - 2018-06-26
11+
12+
### Added
13+
14+
- New extractor for VueJs [#178]
15+
16+
### Fixed
17+
18+
- Do not include empty translations containing the headers in the translator [#182]
19+
- Test enhancement [#177]
20+
1021
## [4.5.0] - 2018-04-23
1122

1223
### Added
@@ -16,58 +27,58 @@ Previous releases are documented in [github releases](https://github.com/oscarot
1627
### Fixed
1728

1829
- Added php-7.2 to travis
19-
- Fixed po tests on bigendian [#159](https://github.com/oscarotero/Gettext/issues/159)
20-
- Improved comment estraction [#166](https://github.com/oscarotero/Gettext/issues/166)
21-
- Fixed incorrect docs to dn__ function [#170](https://github.com/oscarotero/Gettext/issues/170)
22-
- Ignored phpcs.xml file on export [#168](https://github.com/oscarotero/Gettext/issues/168)
23-
- Improved `@method` docs in `Translations` [#175](https://github.com/oscarotero/Gettext/issues/175)
30+
- Fixed po tests on bigendian [#159]
31+
- Improved comment estraction [#166]
32+
- Fixed incorrect docs to dn__ function [#170]
33+
- Ignored phpcs.xml file on export [#168]
34+
- Improved `@method` docs in `Translations` [#175]
2435

2536
## [4.4.4] - 2018-02-21
2637

2738
### Fixed
2839

29-
- Changed the comment extraction to be compatible with gettext behaviour: the comment must be placed in the line preceding the function [#161](https://github.com/oscarotero/Gettext/issues/161).
40+
- Changed the comment extraction to be compatible with gettext behaviour: the comment must be placed in the line preceding the function [#161]
3041

3142
### Security
3243

33-
- Validate eval input from plural forms [#156](https://github.com/oscarotero/Gettext/pull/156)
44+
- Validate eval input from plural forms [#156]
3445

3546
## [4.4.3] - 2017-08-09
3647

3748
### Fixed
3849

3950
- Handle `NULL` arguments on extract entries in php. For example `dn__(null, 'singular', 'plural')`.
40-
- Fixed the `PhpCode` and `JsCode` extractors that didn't extract `dn__` and `dngettext` entries [#155](https://github.com/oscarotero/Gettext/pull/155).
51+
- Fixed the `PhpCode` and `JsCode` extractors that didn't extract `dn__` and `dngettext` entries [#155].
4152
- Fixed the `PhpCode` and `JsCode` extractors that didn't extract `dnpgettext` correctly.
4253

4354
## [4.4.2] - 2017-07-27
4455

4556
### Fixed
4657

47-
- Clone the translations in `Translations::mergeWith` to prevent that the translation is referenced in both places. [#152](https://github.com/oscarotero/Gettext/issues/152)
48-
- Fixed escaped quotes in the javascript extractor [#154](https://github.com/oscarotero/Gettext/pull/154)
58+
- Clone the translations in `Translations::mergeWith` to prevent that the translation is referenced in both places. [#152]
59+
- Fixed escaped quotes in the javascript extractor [#154]
4960

5061
## [4.4.1] - 2017-05-20
5162

5263
### Fixed
5364

54-
- Fixed a bug where the options was not passed correctly to the merging Translations object [#147](https://github.com/oscarotero/Gettext/issues/147)
55-
- Unified the plural behaviours between PHP gettext and Translator when the plural translation is unknown [#148](https://github.com/oscarotero/Gettext/issues/148)
65+
- Fixed a bug where the options was not passed correctly to the merging Translations object [#147]
66+
- Unified the plural behaviours between PHP gettext and Translator when the plural translation is unknown [#148]
5667
- Removed the deprecated function `create_function()` and use `eval()` instead
5768

5869
## [4.4.0] - 2017-05-10
5970

6071
### Added
6172

62-
- New option `noLocation` to po generator, to omit the references [#143](https://github.com/oscarotero/Gettext/issues/143)
63-
- New options `delimiter`, `enclosure` and `escape_char` to Csv and CsvDictionary extractors and generators [#145](https://github.com/oscarotero/Gettext/pull/145/)
64-
- Added the missing `dn__()` function [#146](https://github.com/oscarotero/Gettext/pull/146/)
73+
- New option `noLocation` to po generator, to omit the references [#143]
74+
- New options `delimiter`, `enclosure` and `escape_char` to Csv and CsvDictionary extractors and generators [#145]
75+
- Added the missing `dn__()` function [#146]
6576

6677
### Fixed
6778

6879
- Improved the code style including php_codesniffer in development
6980

70-
## [4.3.0] - 2017-03-04
81+
## 4.3.0 - 2017-03-04
7182

7283
### Added
7384

@@ -82,11 +93,29 @@ Previous releases are documented in [github releases](https://github.com/oscarot
8293

8394
- Fixed a bug related with the javascript source extraction with single quotes
8495

85-
96+
[#178]: https://github.com/oscarotero/Gettext/issues/178
97+
[#182]: https://github.com/oscarotero/Gettext/issues/182
98+
[#177]: https://github.com/oscarotero/Gettext/issues/177
99+
[#159]: https://github.com/oscarotero/Gettext/issues/159
100+
[#166]: https://github.com/oscarotero/Gettext/issues/166
101+
[#170]: https://github.com/oscarotero/Gettext/issues/170
102+
[#168]: https://github.com/oscarotero/Gettext/issues/168
103+
[#175]: https://github.com/oscarotero/Gettext/issues/175
104+
[#161]: https://github.com/oscarotero/Gettext/issues/161
105+
[#156]: https://github.com/oscarotero/Gettext/issues/156
106+
[#155]: https://github.com/oscarotero/Gettext/issues/155
107+
[#152]: https://github.com/oscarotero/Gettext/issues/152
108+
[#154]: https://github.com/oscarotero/Gettext/issues/154
109+
[#147]: https://github.com/oscarotero/Gettext/issues/147
110+
[#148]: https://github.com/oscarotero/Gettext/issues/148
111+
[#143]: https://github.com/oscarotero/Gettext/issues/143
112+
[#145]: https://github.com/oscarotero/Gettext/issues/145
113+
[#146]: https://github.com/oscarotero/Gettext/issues/146
114+
115+
[4.6.0]: https://github.com/oscarotero/Gettext/compare/v4.5.0...v4.6.0
86116
[4.5.0]: https://github.com/oscarotero/Gettext/compare/v4.4.4...v4.5.0
87117
[4.4.4]: https://github.com/oscarotero/Gettext/compare/v4.4.3...v4.4.4
88118
[4.4.3]: https://github.com/oscarotero/Gettext/compare/v4.4.2...v4.4.3
89119
[4.4.2]: https://github.com/oscarotero/Gettext/compare/v4.4.1...v4.4.2
90120
[4.4.1]: https://github.com/oscarotero/Gettext/compare/v4.4.0...v4.4.1
91121
[4.4.0]: https://github.com/oscarotero/Gettext/compare/v4.3.0...v4.4.0
92-
[4.3.0]: https://github.com/oscarotero/Gettext/compare/v4.2.0...v4.3.0

0 commit comments

Comments
 (0)