Skip to content

Commit 2e3afbe

Browse files
committed
branch for release
1 parent be155ae commit 2e3afbe

57 files changed

Lines changed: 72 additions & 72 deletions

File tree

Some content is hidden

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

ApacheThrift.nuspec

Lines changed: 4 additions & 4 deletions
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.23.0.nupkg -Source https://api.nuget.org/v3/index.json
22+
4. nuget push ApacheThrift.0.24.0.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.23.0</version>
29-
<title>Apache Thrift 0.23.0</title>
28+
<version>0.24.0</version>
29+
<title>Apache Thrift 0.24.0</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.23.0" />
39+
<repository type="GitHub" url="https://github.com/apache/thrift" branch="release/0.24.0" />
4040
<tags>Apache Thrift RPC</tags>
4141
</metadata>
4242
<files>

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
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.23.0")
31+
set(thrift_VERSION "0.24.0")
3232
set(PACKAGE_VERSION ${thrift_VERSION})
3333

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

Thrift.podspec

Lines changed: 2 additions & 2 deletions
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.23.0'
3+
s.version = '0.24.0'
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.23.0' }
13+
s.source = { :git => 'https://github.com/apache/thrift.git', :tag => 'v0.24.0' }
1414
s.source_files = 'lib/swift/Sources/*.swift'
1515
end

appveyor.yml

Lines changed: 1 addition & 1 deletion
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.23.0.{build}'
22+
version: '0.24.0.{build}'
2323

2424
shallow_clone: true
2525

bower.json

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

compiler/cpp/src/thrift/version.h

Lines changed: 1 addition & 1 deletion
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.23.0"
27+
#define THRIFT_VERSION "0.24.0"
2828

2929
#endif // _THRIFT_VERSION_H_

configure.ac

Lines changed: 1 addition & 1 deletion
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.23.0])
23+
AC_INIT([thrift], [0.24.0])
2424

2525
AC_CONFIG_AUX_DIR([.])
2626

contrib/Rebus/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
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.23.0.0")]
38-
[assembly: AssemblyFileVersion("0.23.0.0")]
37+
[assembly: AssemblyVersion("0.24.0.0")]
38+
[assembly: AssemblyFileVersion("0.24.0.0")]

contrib/thrift-maven-plugin/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
<artifactId>thrift-maven-plugin</artifactId>
3030
<packaging>maven-plugin</packaging>
3131
<name>thrift-maven-plugin</name>
32-
<version>0.23.0</version>
32+
<version>0.24.0</version>
3333

3434
<properties>
3535
<maven.compiler.source>1.8</maven.compiler.source>

contrib/thrift.spec

Lines changed: 1 addition & 1 deletion
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.23.0
31+
Version: 0.24.0
3232
Release: 0
3333
URL: http://thrift.apache.org
3434
Packager: Thrift Developers <dev@thrift.apache.org>

0 commit comments

Comments
 (0)