fix veralign.sh and bump version (again)

This commit is contained in:
Jens Geyer 2019-10-19 22:08:13 +02:00
parent 6701dbb8e8
commit 616df98f00
26 changed files with 36 additions and 34 deletions

View File

@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'Thrift'
s.version = '0.13.0'
s.version = '0.14.0'
s.summary = "Apache Thrift is a lightweight, language-independent software stack with an associated code generation mechanism for RPC."
s.description = <<-DESC
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
s.author = { 'Apache Thrift Developers' => 'dev@thrift.apache.org' }
s.ios.deployment_target = '9.0'
s.osx.deployment_target = '10.10'
s.source = { :git => 'https://github.com/apache/thrift.git', :tag => 'v0.13.0' }
s.source = { :git => 'https://github.com/apache/thrift.git', :tag => 'v0.14.0' }
s.source_files = 'lib/swift/Sources/*.swift'
end

View File

@ -74,12 +74,12 @@ FILES[lib/haxe/haxelib.json]=simpleReplace
FILES[lib/hs/thrift.cabal]=simpleReplace
FILES[lib/java/gradle.properties]=simpleReplace
FILES[lib/js/package.json]=jsonReplace
FILES[lib/js/package-lock.json]=jsonReplace
FILES[lib/js/src/thrift.js]=simpleReplace
FILES[lib/lua/Thrift.lua]=simpleReplace
FILES[lib/netcore/Thrift/Properties/AssemblyInfo.cs]=simpleReplace
FILES[lib/netcore/Thrift/Transports/Client/THttpClientTransport.cs]=simpleReplace
FILES[lib/netstd/Thrift/Properties/AssemblyInfo.cs]=simpleReplace
FILES[lib/netstd/Thrift/Transports/Client/THttpClientTransport.cs]=simpleReplace
FILES[lib/netstd/Thrift/Thrift.csproj]=simpleReplace
FILES[lib/ocaml/_oasis]=simpleReplace
FILES[lib/perl/lib/Thrift.pm]=simpleReplace
@ -90,7 +90,9 @@ FILES[lib/st/package.xml]=simpleReplace
FILES[lib/swift/Sources/Thrift.swift]=simpleReplace
FILES[lib/swift/Tests/ThriftTests/ThriftTests.swift]=simpleReplace
FILES[lib/ts/package.json]=jsonReplace
FILES[lib/ts/package-lock.json]=jsonReplace
FILES[package.json]=jsonReplace
FILES[package-lock.json]=jsonReplace
FILES[sonar-project.properties]=simpleReplace
FILES[test/csharp/Properties/AssemblyInfo.cs]=simpleReplace
FILES[test/csharp/ThriftTest.csproj]=simpleReplace

View File

@ -1,6 +1,6 @@
## Thrift interface description language
For Thrift version 0.13.0.
For Thrift version 0.14.0.
The Thrift interface definition language (IDL) allows for the definition of [Thrift Types](/docs/types). A Thrift IDL file is processed by the Thrift code generator to produce code for the various target languages to support the defined structs and services in the IDL file.

View File

@ -1,7 +1,7 @@
# This file is shared currently between this Gradle build and the
# Ant builds for fd303 and JavaScript. Keep the dotted notation for
# the properties to minimize the changes in the dependencies.
thrift.version=0.13.0
thrift.version=0.14.0
thrift.groupid=org.apache.thrift
release=false
sign=false

View File

@ -56,5 +56,5 @@ using System.Runtime.InteropServices;
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("0.13.0.*")]
[assembly: AssemblyFileVersion("0.13.0.*")]
[assembly: AssemblyVersion("0.14.0.*")]
[assembly: AssemblyFileVersion("0.14.0.*")]

View File

@ -51,5 +51,5 @@ using System.Runtime.InteropServices;
//
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
[assembly: AssemblyVersion("0.13.0.0")]
[assembly: AssemblyFileVersion("0.13.0.0")]
[assembly: AssemblyVersion("0.14.0.0")]
[assembly: AssemblyFileVersion("0.14.0.0")]

View File

@ -51,5 +51,5 @@ using System.Runtime.InteropServices;
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("0.13.0.0")]
[assembly: AssemblyFileVersion("0.13.0.0")]
[assembly: AssemblyVersion("0.14.0.0")]
[assembly: AssemblyFileVersion("0.14.0.0")]

View File

@ -46,7 +46,7 @@
<UpdateRequired>false</UpdateRequired>
<MapFileExtensions>true</MapFileExtensions>
<ApplicationRevision>0</ApplicationRevision>
<ApplicationVersion>0.13.0.0</ApplicationVersion>
<ApplicationVersion>0.14.0.0</ApplicationVersion>
<UseApplicationTrust>false</UseApplicationTrust>
<BootstrapperEnabled>true</BootstrapperEnabled>
</PropertyGroup>

View File

@ -16,7 +16,7 @@
# under the License.
name: thrift
version: 0.13.0
version: 0.14.0
description: >
A Dart library for Apache Thrift
author: Apache Thrift Developers <dev@thrift.apache.org>

View File

@ -22,7 +22,7 @@
{description, "Thrift bindings"},
% The version of the applicaton
{vsn, "0.13.0"},
{vsn, "0.14.0"},
% All modules used by the application.
{modules, [

View File

@ -1,6 +1,6 @@
{
"name": "thrift",
"version": "0.13.0",
"version": "0.14.0",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

View File

@ -1,6 +1,6 @@
{
"name": "thrift",
"version": "0.13.0",
"version": "0.14.0",
"description": "Thrift is a software framework for scalable cross-language services development.",
"author": {
"name": "Apache Thrift Developers",

View File

@ -1,5 +1,5 @@
Name: libthrift-ocaml
Version: 0.13.0
Version: 0.14.0
OASISFormat: 0.3
Synopsis: OCaml bindings for the Apache Thrift RPC system
Authors: Apache Thrift Developers <dev@thrift.apache.org>

View File

@ -31,6 +31,6 @@ use warnings;
#
package Thrift;
use version 0.77; our $VERSION = version->declare("v0.13.0");
use version 0.77; our $VERSION = version->declare("v0.14.0");
1;

View File

@ -90,7 +90,7 @@ def run_setup(with_binary):
twisted_deps = ['twisted']
setup(name='thrift',
version='0.13.0',
version='0.14.0',
description='Python bindings for the Apache Thrift RPC system',
author='Apache Thrift Developers',
author_email='dev@thrift.apache.org',

View File

@ -1,3 +1,3 @@
class Thrift {
let version = "0.13.0"
let version = "0.14.0"
}

View File

@ -3,7 +3,7 @@ import XCTest
class ThriftTests: XCTestCase {
func testVersion() {
XCTAssertEqual(Thrift().version, "0.13.0")
XCTAssertEqual(Thrift().version, "0.14.0")
}
func test_in_addr_extension() {

View File

@ -1,6 +1,6 @@
{
"name": "thrift",
"version": "0.13.0",
"version": "0.14.0",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

2
package-lock.json generated
View File

@ -1,6 +1,6 @@
{
"name": "thrift",
"version": "0.13.0",
"version": "0.14.0",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

View File

@ -16,7 +16,7 @@ development, combines a software stack with a code generation engine to build
services that work efficiently and seamlessly between all major languages.
# Apache Thrift Version
sonar.projectVersion=0.13.0
sonar.projectVersion=0.14.0
# use this to set another version string
# $ sonar-runner -D sonar.projectVersion=`git rev-parse HEAD`
# set projectDate in combination with projectVersion for imports of old releases
@ -54,7 +54,7 @@ module1.sonar.projectName=Apache Thrift - Java Library
module1.sonar.projectBaseDir=lib/java
module1.sonar.sources=src
module1.sonar.tests=test
module1.sonar.binaries=build/libs/libthrift-0.13.0.jar
module1.sonar.binaries=build/libs/libthrift-0.14.0.jar
module1.sonar.libraries=build/deps/*.jar
module1.sonar.language=java
@ -62,7 +62,7 @@ module2.sonar.projectName=Apache Thrift - Java Tutorial
module2.sonar.projectBaseDir=.
module2.sonar.sources=tutorial/java/src, tutorial/java/gen-java
module2.sonar.binaries=tutorial/java/tutorial.jar
module2.sonar.libraries=lib/java/build/deps/*.jar,lib/java/build/libs/libthrift-0.13.0.jar
module2.sonar.libraries=lib/java/build/deps/*.jar,lib/java/build/libs/libthrift-0.14.0.jar
module2.sonar.language=java
module3.sonar.projectName=Apache Thrift - JavaScript Library

View File

@ -46,7 +46,7 @@
<UpdateRequired>false</UpdateRequired>
<MapFileExtensions>true</MapFileExtensions>
<ApplicationRevision>0</ApplicationRevision>
<ApplicationVersion>0.13.0.0</ApplicationVersion>
<ApplicationVersion>0.14.0.0</ApplicationVersion>
<UseApplicationTrust>false</UseApplicationTrust>
<BootstrapperEnabled>true</BootstrapperEnabled>
</PropertyGroup>

View File

@ -16,7 +16,7 @@
# under the License.
name: thrift_test_client
version: 0.13.0
version: 0.14.0
description: A client integration test for the Dart Thrift library
author: Apache Thrift Developers <dev@thrift.apache.org>
homepage: http://thrift.apache.org

View File

@ -22,7 +22,7 @@
{description, "Thrift cross language test"},
% The version of the applicaton
{vsn, "0.13.0"},
{vsn, "0.14.0"},
% All modules used by the application.
{modules, [

View File

@ -51,5 +51,5 @@ using System.Runtime.InteropServices;
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("0.13.0.0")]
[assembly: AssemblyFileVersion("0.13.0.0")]
[assembly: AssemblyVersion("0.14.0.0")]
[assembly: AssemblyFileVersion("0.14.0.0")]

View File

@ -16,7 +16,7 @@
# under the License.
name: tutorial_client
version: 0.13.0
version: 0.14.0
description: A Dart client implementation of the Apache Thrift tutorial
author: Apache Thrift Developers <dev@thrift.apache.org>
homepage: http://thrift.apache.org

View File

@ -100,13 +100,13 @@
<VersionInfoKeys>
<VersionInfoKeys Name="CompanyName"/>
<VersionInfoKeys Name="FileDescription">Thrift Tutorial</VersionInfoKeys>
<VersionInfoKeys Name="FileVersion">0.13.0.0</VersionInfoKeys>
<VersionInfoKeys Name="FileVersion">0.14.0.0</VersionInfoKeys>
<VersionInfoKeys Name="InternalName">DelphiClient</VersionInfoKeys>
<VersionInfoKeys Name="LegalCopyright">Copyright © 2012 The Apache Software Foundation</VersionInfoKeys>
<VersionInfoKeys Name="LegalTrademarks"/>
<VersionInfoKeys Name="OriginalFilename">DelphiClient.exe</VersionInfoKeys>
<VersionInfoKeys Name="ProductName">Thrift</VersionInfoKeys>
<VersionInfoKeys Name="ProductVersion">0.13.0.0</VersionInfoKeys>
<VersionInfoKeys Name="ProductVersion">0.14.0.0</VersionInfoKeys>
<VersionInfoKeys Name="Comments"/>
</VersionInfoKeys>
<Source>