You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@thrift.apache.org by jk...@apache.org on 2019/05/26 18:59:48 UTC

[thrift] branch master updated (370d751 -> 057bebc)

This is an automated email from the ASF dual-hosted git repository.

jking pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/thrift.git.


    from 370d751  spelling mistake, perhaps (#1803) [ci skip
     add 1e41be4  THRIFT-4784 Thrift should throw when skipping over unexpected data Client: as3 Patch: Jens Geyer
     add 798e90a  THRIFT-4024, THRIFT-4783: throw when skipping invalid type (#1742)
     add 92c660f  additional test for TSimpleJSONProtocol
     add 5e64997  THRIFT-4691: ensure CPAN module runs unit tests
     add 5ecaeb9  THRIFT-4746: changes for publishing 0.12.0 to maven; fix java debug vs. release build with cmake
     add 52da9ab  THRIFT-4750: as3 changes to build and publish to maven central
     add c685cb0  THRIFT-4698: add haskell hackage sdist target and fix cabal file
     add 8d21d80  Release 0.12.1
     add 17fa32f  fix java build issue
     new 057bebc  Merge branch '0.12.1'

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 lib/csharp/src/Thrift.csproj | 2 +-
 lib/hs/Makefile.am           | 3 +++
 lib/hs/thrift.cabal          | 2 +-
 lib/rs/README.md             | 1 +
 4 files changed, 6 insertions(+), 2 deletions(-)


[thrift] 01/01: Merge branch '0.12.1'

Posted by jk...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

jking pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/thrift.git

commit 057bebc1c346d6adcc2894d8f299c4276650d33d
Merge: 370d751 17fa32f
Author: James E. King III <jk...@apache.org>
AuthorDate: Sun May 26 14:59:04 2019 -0400

    Merge branch '0.12.1'

 lib/csharp/src/Thrift.csproj | 2 +-
 lib/hs/Makefile.am           | 3 +++
 lib/hs/thrift.cabal          | 2 +-
 lib/rs/README.md             | 1 +
 4 files changed, 6 insertions(+), 2 deletions(-)

diff --cc lib/hs/thrift.cabal
index 0849b80,cab9d1e..dd30d89
--- a/lib/hs/thrift.cabal
+++ b/lib/hs/thrift.cabal
@@@ -18,9 -18,9 +18,9 @@@
  --
  
  Name:           thrift
 -Version:        0.12.1
 +Version:        0.13.0
  Cabal-Version:  1.24
- License:        OtherLicense
+ License:        Apache
  Category:       Foreign
  Build-Type:     Simple
  Synopsis:       Haskell bindings for the Apache Thrift RPC system
diff --cc lib/rs/README.md
index c8d3643,f611a91..f518f4e
--- a/lib/rs/README.md
+++ b/lib/rs/README.md
@@@ -46,15 -46,7 +46,16 @@@ It does not currently use any Rust 201
  
  Breaking changes are minimized. When they are made they will be outlined below with transition guidelines.
  
 -##### Thrift 0.12.x
 +##### Thrift 0.13.0
++
 +* **[THRIFT-4536]** - Use TryFrom from std, required rust 1.34.0 or higher
 +
 +    Previously TryFrom was from try_from crate, it is now from the std library,
 +    but this functionality is only available in rust 1.34.0. Additionally, 
 +    ordered-float is now re-exported under the thrift module to reduce 
 +    possible dependency mismatches.
 +
 +##### Thrift 0.12.0
  
  * **[THRIFT-4529]** - Rust enum variants are now camel-cased instead of uppercased to conform to Rust naming conventions