File tree 3 files changed +15
-4
lines changed
3 files changed +15
-4
lines changed Original file line number Diff line number Diff line change 1
1
# ChangeLog
2
2
3
+ ## v0.1.0.3
4
+ - In printing and parsing protocol buffers use/interpret escape
5
+ sequences in a way compatible with the Protocol Buffer
6
+ distribution's C/C++ escaping style, closing Issues #44 and
7
+ #45 . This makes the text output incompatible with previous
8
+ versions; earlier versions will misinterpret text written by this
9
+ version and this version will misinterpret text written by
10
+ previous versions.
11
+ - Support reading text protocol buffers with single quote characters
12
+ (') for string delimiters, closing Issue #20 .
13
+
3
14
## v0.1.0.2
4
15
- Expose more of protoc-gen-haskell to plugins.
5
16
- Support enum aliases.
Original file line number Diff line number Diff line change 1
1
name : proto-lens-protoc
2
- version : 0.1.0.2
2
+ version : 0.1.0.3
3
3
synopsis : Protocol buffer compiler for the proto-lens library .
4
4
description :
5
5
Turn protocol buffer files (.proto) into Haskell files (.hs) which
@@ -38,7 +38,7 @@ library
38
38
, haskell-src-exts == 1.17. *
39
39
, lens-family == 1.2. *
40
40
, process >= 1.2 && < 1.5
41
- , proto-lens == 0.1.0.2
41
+ , proto-lens == 0.1.0.3
42
42
, text == 1.2. *
43
43
reexported-modules :
44
44
-- Modules that are needed by the generated Haskell files.
@@ -67,7 +67,7 @@ executable proto-lens-protoc
67
67
, lens-family == 1.2. *
68
68
-- Specify an exact version of `proto-lens`, since it's tied closely
69
69
-- to the generated code.
70
- , proto-lens == 0.1.0.2
70
+ , proto-lens == 0.1.0.3
71
71
, text == 1.2. *
72
72
hs-source-dirs : src
73
73
other-modules :
Original file line number Diff line number Diff line change 1
1
name : proto-lens
2
- version : 0.1.0.2
2
+ version : 0.1.0.3
3
3
synopsis : A lens-based implementation of protocol buffers in Haskell.
4
4
description :
5
5
The proto-lens library provides to protocol buffers using modern
You can’t perform that action at this time.
0 commit comments