File tree 2 files changed +15
-1
lines changed
2 files changed +15
-1
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## fluent.syntax 0.11.0 (February 13, 2019)
4
+
5
+ - API enhancements
6
+
7
+ There are two new APIs in ` fluent.syntax.ast ` , ` Visitor ` and ` Transformer ` .
8
+ Use these APIs for read-only iteration over AST trees, and in-place mutation
9
+ of AST trees, respectively. There's also a new method ` BaseNode.clone ` ,
10
+ which can be used to create a deep copy of an AST node.
11
+
12
+ - DEPRECATIONS
13
+
14
+ The API ` BaseNode.traverse ` is deprecated and will be removed in a future
15
+ release. Please adjust your code to the ` Visitor ` or ` Transformer ` APIs.
16
+
3
17
## fluent.syntax 0.10.0 (January 15, 2019)
4
18
5
19
The ` fluent ` package which used to provide the ` fluent.syntax ` module has been
Original file line number Diff line number Diff line change 2
2
from setuptools import setup
3
3
4
4
setup (name = 'fluent.syntax' ,
5
- version = '0.10 .0' ,
5
+ version = '0.11 .0' ,
6
6
description = 'Localization library for expressive translations.' ,
7
7
long_description = 'See https://github.com/projectfluent/python-fluent/ for more info.' ,
8
8
author = 'Mozilla' ,
You can’t perform that action at this time.
0 commit comments