Skip to content

Commit 11a70fb

Browse files
authored
Release 0.1.0.3 (#49)
* Bump versions to 0.1.0.3 for proto-lens{,-protoc}. * Release notes from @mikegunter.
1 parent 093d3a5 commit 11a70fb

File tree

3 files changed

+15
-4
lines changed

3 files changed

+15
-4
lines changed

ChangeLog.md

+11
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# ChangeLog
22

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+
314
## v0.1.0.2
415
- Expose more of protoc-gen-haskell to plugins.
516
- Support enum aliases.

proto-lens-protoc/proto-lens-protoc.cabal

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: proto-lens-protoc
2-
version: 0.1.0.2
2+
version: 0.1.0.3
33
synopsis: Protocol buffer compiler for the proto-lens library.
44
description:
55
Turn protocol buffer files (.proto) into Haskell files (.hs) which
@@ -38,7 +38,7 @@ library
3838
, haskell-src-exts == 1.17.*
3939
, lens-family == 1.2.*
4040
, process >= 1.2 && < 1.5
41-
, proto-lens == 0.1.0.2
41+
, proto-lens == 0.1.0.3
4242
, text == 1.2.*
4343
reexported-modules:
4444
-- Modules that are needed by the generated Haskell files.
@@ -67,7 +67,7 @@ executable proto-lens-protoc
6767
, lens-family == 1.2.*
6868
-- Specify an exact version of `proto-lens`, since it's tied closely
6969
-- to the generated code.
70-
, proto-lens == 0.1.0.2
70+
, proto-lens == 0.1.0.3
7171
, text == 1.2.*
7272
hs-source-dirs: src
7373
other-modules:

proto-lens/proto-lens.cabal

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: proto-lens
2-
version: 0.1.0.2
2+
version: 0.1.0.3
33
synopsis: A lens-based implementation of protocol buffers in Haskell.
44
description:
55
The proto-lens library provides to protocol buffers using modern

0 commit comments

Comments
 (0)