Skip to content

Commit 63e86ce

Browse files
committed
Version 0.14.2
1 parent d604602 commit 63e86ce

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+78
-60
lines changed

ApacheThrift.nuspec

+4-4
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,14 @@
1919
the "Thrift" project.
2020
2. nuget setApiKey <your-api-key>
2121
3. nuget pack ApacheThrift.nuspec -Symbols -SymbolPackageFormat snupkg
22-
4. nuget push ApacheThrift.0.14.1.nupkg -Source https://api.nuget.org/v3/index.json
22+
4. nuget push ApacheThrift.0.14.2.nupkg -Source https://api.nuget.org/v3/index.json
2323
-->
2424

2525
<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd">
2626
<metadata>
2727
<id>ApacheThrift</id>
28-
<version>0.14.1</version>
29-
<title>Apache Thrift 0.14.1</title>
28+
<version>0.14.2</version>
29+
<title>Apache Thrift 0.14.2</title>
3030
<authors>Apache Thrift Developers</authors>
3131
<owners>Apache Software Foundation</owners>
3232
<license type="expression">Apache-2.0</license>
@@ -36,7 +36,7 @@
3636
<description>
3737
Contains runtime libraries from lib/netstd for netstandard2.0 framework development.
3838
</description>
39-
<repository type="GitHub" url="https://github.com/apache/thrift" branch="release/0.14.1" />
39+
<repository type="GitHub" url="https://github.com/apache/thrift" branch="release/0.14.2" />
4040
<tags>Apache Thrift RPC</tags>
4141
</metadata>
4242
<files>

CHANGES.md

+7

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ endif()
2828

2929
# PACKAGE_VERSION is used by cpack scripts currently
3030
# Both thrift_VERSION and PACKAGE_VERSION should be the same for now
31-
set(thrift_VERSION "0.14.1")
31+
set(thrift_VERSION "0.14.2")
3232
set(PACKAGE_VERSION ${thrift_VERSION})
3333

3434
project("thrift" VERSION ${PACKAGE_VERSION})

Thrift.podspec

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'Thrift'
3-
s.version = '0.14.1'
3+
s.version = '0.14.2'
44
s.summary = "Apache Thrift is a lightweight, language-independent software stack with an associated code generation mechanism for RPC."
55
s.description = <<-DESC
66
The Apache Thrift scalable cross-language software framework for networked services development combines a software stack with a code generation engine to build services that work efficiently and seamlessly between many programming languages.
@@ -10,6 +10,6 @@ The Apache Thrift scalable cross-language software framework for networked servi
1010
s.author = { 'Apache Thrift Developers' => 'dev@thrift.apache.org' }
1111
s.ios.deployment_target = '9.0'
1212
s.osx.deployment_target = '10.10'
13-
s.source = { :git => 'https://github.com/apache/thrift.git', :tag => 'v0.14.1' }
13+
s.source = { :git => 'https://github.com/apache/thrift.git', :tag => 'v0.14.2' }
1414
s.source_files = 'lib/swift/Sources/*.swift'
1515
end

appveyor.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
# build Apache Thrift on AppVeyor - https://ci.appveyor.com
2121

22-
version: '0.14.1.{build}'
22+
version: '0.14.2.{build}'
2323

2424
shallow_clone: true
2525

bower.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "thrift",
3-
"version": "0.14.1",
3+
"version": "0.14.2",
44
"homepage": "https://github.com/apache/thrift.git",
55
"authors": [
66
"Apache Thrift <dev@thrift.apache.org>"

compiler/cpp/src/thrift/version.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,6 @@
2424
#pragma once
2525
#endif // _MSC_VER
2626

27-
#define THRIFT_VERSION "0.14.1"
27+
#define THRIFT_VERSION "0.14.2"
2828

2929
#endif // _THRIFT_VERSION_H_

configure.ac

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
AC_PREREQ(2.65)
2121
AC_CONFIG_MACRO_DIR([./aclocal])
2222

23-
AC_INIT([thrift], [0.14.1])
23+
AC_INIT([thrift], [0.14.2])
2424

2525
AC_CONFIG_AUX_DIR([.])
2626

contrib/Rebus/Properties/AssemblyInfo.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,5 +34,5 @@
3434

3535
[assembly: Guid("0af10984-40d3-453d-b1e5-421529e8c7e2")]
3636

37-
[assembly: AssemblyVersion("0.14.1.0")]
38-
[assembly: AssemblyFileVersion("0.14.1.0")]
37+
[assembly: AssemblyVersion("0.14.2.0")]
38+
[assembly: AssemblyFileVersion("0.14.2.0")]

contrib/thrift-maven-plugin/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
<artifactId>thrift-maven-plugin</artifactId>
3333
<packaging>maven-plugin</packaging>
3434
<name>thrift-maven-plugin</name>
35-
<version>0.14.1</version>
35+
<version>0.14.2</version>
3636

3737
<properties>
3838
<maven.compiler.source>1.8</maven.compiler.source>

contrib/thrift.spec

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Name: thrift
2828
License: Apache License v2.0
2929
Group: Development
3030
Summary: RPC and serialization framework
31-
Version: 0.14.1
31+
Version: 0.14.2
3232
Release: 0
3333
URL: http://thrift.apache.org
3434
Packager: Thrift Developers <dev@thrift.apache.org>

contrib/zeromq/csharp/AssemblyInfo.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
// The form "{Major}.{Minor}.*" will automatically update the build and revision,
3737
// and "{Major}.{Minor}.{Build}.*" will update just the revision.
3838

39-
[assembly: AssemblyVersion("0.14.1.0")]
39+
[assembly: AssemblyVersion("0.14.2.0")]
4040

4141
// The following attributes are used to specify the signing key for the assembly,
4242
// if desired. See the Mono documentation for more information about signing.

debian/changelog

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
thrift (0.14.2) stable; urgency=low
2+
3+
* update to 0.14.2
4+
5+
-- Apache Thrift Developers <dev@thrift.apache.org> Wed, 11 Jun 2021 01:00:00 +0100
6+
17
thrift (0.14.1) stable; urgency=low
28

39
* update to 0.14.1

doap.rdf

+5
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,11 @@
5757
<category rdf:resource="http://projects.apache.org/category/network-client" />
5858
<category rdf:resource="http://projects.apache.org/category/network-server" />
5959
<release rdf:parseType="Collection">
60+
<Version>
61+
<name>Apache Thrift</name>
62+
<created>2021-06-11</created>
63+
<revision>0.14.2</revision>
64+
</Version>
6065
<Version>
6166
<name>Apache Thrift</name>
6267
<created>2021-03-02</created>

doc/specs/idl.md

+1-1

lib/as3/gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# This file is shared currently between this Gradle build and the
22
# Ant builds for fd303 and JavaScript. Keep the dotted notation for
33
# the properties to minimize the changes in the dependencies.
4-
thrift.version=0.14.1
4+
thrift.version=0.14.2
55
thrift.groupid=org.apache.thrift
66
release=false
77
sign=false

lib/d/src/thrift/base.d

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ class TCompoundOperationException : TException {
5050
/// The Thrift version string, used for informative purposes.
5151
// Note: This is currently hardcoded, but will likely be filled in by the build
5252
// system in future versions.
53-
enum VERSION = "0.14.1";
53+
enum VERSION = "0.14.2";
5454

5555
/**
5656
* Functions used for logging inside Thrift.

lib/dart/pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
# under the License.
1717

1818
name: thrift
19-
version: 0.14.1
19+
version: 0.14.2
2020
description: >
2121
A Dart library for Apache Thrift
2222
author: Apache Thrift Developers <dev@thrift.apache.org>

lib/delphi/src/Thrift.pas

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ interface
2828
Thrift.Protocol;
2929

3030
const
31-
Version = '0.14.1';
31+
Version = '0.14.2';
3232

3333
type
3434
TException = Thrift.Exception.TException; // compatibility alias

lib/erl/src/thrift.app.src

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
{description, "Thrift bindings"},
2323

2424
% The version of the applicaton
25-
{vsn, "0.14.1"},
25+
{vsn, "0.14.2"},
2626

2727
% All modules used by the application.
2828
{modules, [

lib/haxe/haxelib.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"license": "Apache",
55
"tags": ["thrift", "rpc", "serialization", "cross", "framework"],
66
"description": "Haxe bindings for the Apache Thrift RPC and serialization framework",
7-
"version": "0.14.1",
7+
"version": "0.14.2",
88
"releasenote": "Licensed under Apache License, Version 2.0. The Apache Thrift compiler needs to be installed separately.",
99
"contributors": ["ApacheThrift"],
1010
"dependencies": { },

lib/hs/thrift.cabal

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
--
1919

2020
Name: thrift
21-
Version: 0.14.1
21+
Version: 0.14.2
2222
Cabal-Version: 1.24
2323
License: Apache
2424
Category: Foreign

lib/java/gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# This file is shared currently between this Gradle build and the
22
# Ant builds for fd303 and JavaScript. Keep the dotted notation for
33
# the properties to minimize the changes in the dependencies.
4-
thrift.version=0.14.1
4+
thrift.version=0.14.2
55
thrift.groupid=org.apache.thrift
66
release=false
77

lib/js/package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/js/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "thrift",
3-
"version": "0.14.1",
3+
"version": "0.14.2",
44
"description": "Thrift is a software framework for scalable cross-language services development.",
55
"main": "./src/thrift",
66
"author": {

lib/js/src/thrift.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ var Thrift = {
4646
* @const {string} Version
4747
* @memberof Thrift
4848
*/
49-
Version: '0.14.1',
49+
Version: '0.14.2',
5050

5151
/**
5252
* Thrift IDL type string to Id mapping.

lib/lua/Thrift.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ function ttable_size(t)
4848
return count
4949
end
5050

51-
version = '0.14.1'
51+
version = '0.14.2'
5252

5353
TType = {
5454
STOP = 0,

lib/netstd/Thrift/Properties/AssemblyInfo.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -52,5 +52,5 @@
5252
// You can specify all the values or you can default the Build and Revision Numbers
5353
// by using the '*' as shown below:
5454

55-
[assembly: AssemblyVersion("0.14.1.0")]
56-
[assembly: AssemblyFileVersion("0.14.1.0")]
55+
[assembly: AssemblyVersion("0.14.2.0")]
56+
[assembly: AssemblyFileVersion("0.14.2.0")]

lib/netstd/Thrift/Thrift.csproj

+3-3
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@
3939
<SignAssembly>true</SignAssembly>
4040
<AssemblyOriginatorKeyFile>thrift.snk</AssemblyOriginatorKeyFile>
4141
<DelaySign>false</DelaySign>
42-
<Title>Apache Thrift 0.14.1</Title>
43-
<Version>0.14.1.0</Version>
42+
<Title>Apache Thrift 0.14.2</Title>
43+
<Version>0.14.2.0</Version>
4444
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
4545
<PackageProjectUrl>http://thrift.apache.org/</PackageProjectUrl>
4646
<Authors>Apache Thrift Developers</Authors>
@@ -49,7 +49,7 @@
4949
<PackageDescription>C# .NET Core bindings for the Apache Thrift RPC system</PackageDescription>
5050
<PackageReleaseNotes></PackageReleaseNotes>
5151
<PackageTags>Apache Thrift RPC</PackageTags>
52-
<PackageReleaseNotes>https://github.com/apache/thrift/blob/0.14.1/CHANGES.md</PackageReleaseNotes>
52+
<PackageReleaseNotes>https://github.com/apache/thrift/blob/0.14.2/CHANGES.md</PackageReleaseNotes>
5353
<Copyright>Copyright 2021 The Apache Software Foundation</Copyright>
5454
</PropertyGroup>
5555

lib/ocaml/_oasis

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Name: libthrift-ocaml
2-
Version: 0.14.1
2+
Version: 0.14.2
33
OASISFormat: 0.3
44
Synopsis: OCaml bindings for the Apache Thrift RPC system
55
Authors: Apache Thrift Developers <dev@thrift.apache.org>

lib/perl/lib/Thrift.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,6 @@ use warnings;
3131
#
3232

3333
package Thrift;
34-
use version 0.77; our $VERSION = version->declare("v0.14.1");
34+
use version 0.77; our $VERSION = version->declare("v0.14.2");
3535

3636
1;

lib/py/setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ def run_setup(with_binary):
9191
twisted_deps = ['twisted']
9292

9393
setup(name='thrift',
94-
version='0.14.1',
94+
version='0.14.2',
9595
description='Python bindings for the Apache Thrift RPC system',
9696
author='Apache Thrift Developers',
9797
author_email='dev@thrift.apache.org',

lib/rb/thrift.gemspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ $:.push File.expand_path("../lib", __FILE__)
33

44
Gem::Specification.new do |s|
55
s.name = 'thrift'
6-
s.version = '0.14.1'
6+
s.version = '0.14.2'
77
s.authors = ['Apache Thrift Developers']
88
s.email = ['dev@thrift.apache.org']
99
s.homepage = 'http://thrift.apache.org'

lib/rs/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "thrift"
33
description = "Rust bindings for the Apache Thrift RPC system"
44
edition = "2018"
5-
version = "0.14.1"
5+
version = "0.14.2"
66
license = "Apache-2.0"
77
authors = ["Apache Thrift Developers <dev@thrift.apache.org>"]
88
homepage = "http://thrift.apache.org"

lib/st/package.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
specific language governing permissions and limitations
1818
under the License.
1919
-->
20-
<!-- Apache Thrift Smalltalk library version 0.14.1 -->
20+
<!-- Apache Thrift Smalltalk library version 0.14.2 -->
2121
<package>
2222
<name>libthrift-st</name>
2323
<file>thrift.st</file>

lib/swift/Sources/Thrift.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
class Thrift {
2-
let version = "0.14.1"
2+
let version = "0.14.2"
33
}

lib/swift/Tests/ThriftTests/ThriftTests.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import XCTest
33

44
class ThriftTests: XCTestCase {
55
func testVersion() {
6-
XCTAssertEqual(Thrift().version, "0.14.1")
6+
XCTAssertEqual(Thrift().version, "0.14.2")
77
}
88

99
static var allTests : [(String, (ThriftTests) -> () throws -> Void)] {

lib/ts/package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/ts/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "thrift",
3-
"version": "0.14.1",
3+
"version": "0.14.2",
44
"description": "Thrift is a software framework for scalable cross-language services development.",
55
"author": {
66
"name": "Apache Thrift Developers",

package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"type": "git",
77
"url": "https://github.com/apache/thrift.git"
88
},
9-
"version": "0.14.1",
9+
"version": "0.14.2",
1010
"author": {
1111
"name": "Apache Thrift Developers",
1212
"email": "dev@thrift.apache.org",

0 commit comments

Comments
 (0)