mirror of
https://github.com/valitydev/thrift.git
synced 2024-11-07 02:45:22 +00:00
Release 0.12.1
This commit is contained in:
parent
c685cb05d4
commit
8d21d80cd1
15
CHANGES
15
CHANGES
@ -1,5 +1,20 @@
|
||||
Apache Thrift Changelog
|
||||
|
||||
================================================================================
|
||||
Thrift 0.12.1
|
||||
--------------------------------------------------------------------------------
|
||||
|
||||
## Bug fixes
|
||||
* [THRIFT-4024] - Skip() should throw on unknown data types
|
||||
* [THRIFT-4783] - Thrift should throw when skipping over unexpected data
|
||||
* [THRIFT-4784] - Thrift should throw when skipping over unexpected data
|
||||
* additional test for TSimpleJSONProtocol
|
||||
* [THRIFT-4698] - add haskell hackage sdist target and fix cabal file
|
||||
* [THRIFT-4750] - as3 changes to build and publish to maven central
|
||||
* [THRIFT-4746] - changes for publishing to maven; fix java debug vs. release build with cmake
|
||||
* [THRIFT-4691] - ensure CPAN module runs unit tests
|
||||
|
||||
|
||||
================================================================================
|
||||
Thrift 0.12.0
|
||||
--------------------------------------------------------------------------------
|
||||
|
@ -1,6 +1,6 @@
|
||||
Pod::Spec.new do |s|
|
||||
s.name = "Thrift-swift3"
|
||||
s.version = "0.12.0"
|
||||
s.version = "0.12.1"
|
||||
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 software framework, for scalable cross-language services development, combines a software stack with a code generation engine to build services that work efficiently and seamlessly between C++, Java, Python, PHP, Ruby, Erlang, Perl, Haskell, C#, Cocoa, JavaScript, Node.js, Smalltalk, OCaml and Delphi and other languages.
|
||||
@ -11,6 +11,6 @@ The Apache Thrift software framework, for scalable cross-language services devel
|
||||
s.ios.deployment_target = '9.0'
|
||||
s.osx.deployment_target = '10.10'
|
||||
s.requires_arc = true
|
||||
s.source = { :git => "https://github.com/apache/thrift.git", :tag => "0.12.0" }
|
||||
s.source = { :git => "https://github.com/apache/thrift.git", :tag => "v0.12.1" }
|
||||
s.source_files = "lib/swift/Sources/*.swift"
|
||||
end
|
||||
|
@ -1,6 +1,6 @@
|
||||
Pod::Spec.new do |s|
|
||||
s.name = "Thrift"
|
||||
s.version = "0.12.0"
|
||||
s.version = "0.12.1"
|
||||
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 software framework, for scalable cross-language services development, combines a software stack with a code generation engine to build services that work efficiently and seamlessly between C++, Java, Python, PHP, Ruby, Erlang, Perl, Haskell, C#, Cocoa, JavaScript, Node.js, Smalltalk, OCaml and Delphi and other languages.
|
||||
@ -13,6 +13,6 @@ The Apache Thrift software framework, for scalable cross-language services devel
|
||||
s.osx.deployment_target = '10.8'
|
||||
s.ios.framework = 'CFNetwork'
|
||||
s.osx.framework = 'CoreServices'
|
||||
s.source = { :git => "https://github.com/apache/thrift.git", :tag => "0.12.0" }
|
||||
s.source = { :git => "https://github.com/apache/thrift.git", :tag => "v0.12.1" }
|
||||
s.source_files = 'lib/cocoa/src/**/*.{h,m,swift}'
|
||||
end
|
||||
|
@ -19,7 +19,7 @@
|
||||
|
||||
# build Apache Thrift on AppVeyor - https://ci.appveyor.com
|
||||
|
||||
version: '0.12.0.{build}'
|
||||
version: '0.12.1.{build}'
|
||||
|
||||
shallow_clone: true
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "thrift",
|
||||
"version": "0.12.0",
|
||||
"version": "0.12.1",
|
||||
"homepage": "https://git-wip-us.apache.org/repos/asf/thrift.git",
|
||||
"authors": [
|
||||
"Apache Thrift <dev@thrift.apache.org>"
|
||||
|
@ -35,7 +35,7 @@ set(CMAKE_INCLUDE_DIRECTORIES_PROJECT_BEFORE ON)
|
||||
set(CMAKE_COLOR_MAKEFILE ON)
|
||||
|
||||
# Define the generic version of the libraries here
|
||||
set(GENERIC_LIB_VERSION "0.12.0")
|
||||
set(GENERIC_LIB_VERSION "0.12.1")
|
||||
set(GENERIC_LIB_SOVERSION "0")
|
||||
|
||||
# Set the default build type to release with debug info
|
||||
|
@ -20,7 +20,7 @@
|
||||
AC_PREREQ(2.65)
|
||||
AC_CONFIG_MACRO_DIR([./aclocal])
|
||||
|
||||
AC_INIT([thrift], [0.12.0])
|
||||
AC_INIT([thrift], [0.12.1])
|
||||
|
||||
AC_CONFIG_AUX_DIR([.])
|
||||
|
||||
|
@ -34,5 +34,5 @@ using System.Runtime.InteropServices;
|
||||
|
||||
[assembly: Guid("0af10984-40d3-453d-b1e5-421529e8c7e2")]
|
||||
|
||||
[assembly: AssemblyVersion("0.12.0.0")]
|
||||
[assembly: AssemblyFileVersion("0.12.0.0")]
|
||||
[assembly: AssemblyVersion("0.12.1.0")]
|
||||
[assembly: AssemblyFileVersion("0.12.1.0")]
|
||||
|
@ -26,7 +26,7 @@ except:
|
||||
from distutils.core import setup, Extension, Command
|
||||
|
||||
setup(name='thrift_fb303',
|
||||
version='0.12.0',
|
||||
version='0.12.1',
|
||||
description='Python bindings for the Apache Thrift FB303',
|
||||
author=['Thrift Developers'],
|
||||
author_email=['dev@thrift.apache.org'],
|
||||
|
@ -27,7 +27,7 @@
|
||||
<artifactId>thrift-maven-plugin</artifactId>
|
||||
<packaging>maven-plugin</packaging>
|
||||
<name>thrift-maven-plugin</name>
|
||||
<version>0.12.0</version>
|
||||
<version>0.12.1</version>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
|
@ -28,7 +28,7 @@ Name: thrift
|
||||
License: Apache License v2.0
|
||||
Group: Development
|
||||
Summary: RPC and serialization framework
|
||||
Version: 0.12.0
|
||||
Version: 0.12.1
|
||||
Release: 0
|
||||
URL: http://thrift.apache.org
|
||||
Packager: Thrift Developers <dev@thrift.apache.org>
|
||||
|
@ -11,7 +11,7 @@ This will download and launch the base box VM under VirtualBox and run the Apach
|
||||
$ vagrant ssh
|
||||
[vagrant@thrift ~]$ cd /thrift
|
||||
[vagrant@thrift thrift]$ compiler/cpp/thrift --version
|
||||
Thrift version 0.12.0
|
||||
Thrift version 0.12.1
|
||||
|
||||
The provisioning script (inside the Vagrantfile) runs ./bootstrap.sh, ./configure, make and make check, but does not install thrift. To install thrift run "make install".
|
||||
|
||||
|
@ -25,7 +25,7 @@
|
||||
<UpdateRequired>false</UpdateRequired>
|
||||
<MapFileExtensions>true</MapFileExtensions>
|
||||
<ApplicationRevision>0</ApplicationRevision>
|
||||
<ApplicationVersion>0.12.0</ApplicationVersion>
|
||||
<ApplicationVersion>0.12.1</ApplicationVersion>
|
||||
<IsWebBootstrapper>false</IsWebBootstrapper>
|
||||
<UseApplicationTrust>false</UseApplicationTrust>
|
||||
<BootstrapperEnabled>true</BootstrapperEnabled>
|
||||
|
6
debian/changelog
vendored
6
debian/changelog
vendored
@ -1,3 +1,9 @@
|
||||
thrift (0.12.1) stable; urgency=low
|
||||
|
||||
* update to 0.12.1
|
||||
|
||||
-- Jens Geyer <jensg@apache.org> Mon, 25 Feb 2019 22:42:00 +0100
|
||||
|
||||
thrift (0.12.0) stable; urgency=low
|
||||
|
||||
* update to 0.12.0
|
||||
|
5
doap.rdf
5
doap.rdf
@ -58,6 +58,11 @@
|
||||
<category rdf:resource="http://projects.apache.org/category/network-client" />
|
||||
<category rdf:resource="http://projects.apache.org/category/network-server" />
|
||||
<release rdf:parseType="Collection">
|
||||
<Version>
|
||||
<name>Apache Thrift</name>
|
||||
<created>2019-02-25</created>
|
||||
<revision>0.12.1</revision>
|
||||
</Version>
|
||||
<Version>
|
||||
<name>Apache Thrift</name>
|
||||
<created>2018-10-15</created>
|
||||
|
@ -1,7 +1,8 @@
|
||||
# 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.12.1thrift.groupid=org.apache.thrift
|
||||
thrift.version=0.12.1
|
||||
thrift.groupid=org.apache.thrift
|
||||
release=false
|
||||
sign=false
|
||||
|
||||
|
@ -35,7 +35,7 @@ http://www.gtk.org/
|
||||
Breaking Changes
|
||||
================
|
||||
|
||||
0.12.0
|
||||
0.12.x
|
||||
------
|
||||
|
||||
The compiler's handling of namespaces when generating the name of types,
|
||||
|
@ -17,4 +17,4 @@
|
||||
* under the License.
|
||||
*/
|
||||
|
||||
#define ThriftVersion @"0.12.0"
|
||||
#define ThriftVersion @"0.12.1"
|
||||
|
@ -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.12.0.*")]
|
||||
[assembly: AssemblyFileVersion("0.12.0.*")]
|
||||
[assembly: AssemblyVersion("0.12.1.*")]
|
||||
[assembly: AssemblyFileVersion("0.12.1.*")]
|
||||
|
@ -45,7 +45,7 @@
|
||||
<UpdateRequired>false</UpdateRequired>
|
||||
<MapFileExtensions>true</MapFileExtensions>
|
||||
<ApplicationRevision>0</ApplicationRevision>
|
||||
<ApplicationVersion>0.12.0.%2a</ApplicationVersion>
|
||||
<ApplicationVersion>0.12.1.%2a</ApplicationVersion>
|
||||
<IsWebBootstrapper>false</IsWebBootstrapper>
|
||||
<UseApplicationTrust>false</UseApplicationTrust>
|
||||
<BootstrapperEnabled>true</BootstrapperEnabled>
|
||||
|
@ -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.12.0.1")]
|
||||
[assembly: AssemblyFileVersion("0.12.0.1")]
|
||||
[assembly: AssemblyVersion("0.12.1.1")]
|
||||
[assembly: AssemblyFileVersion("0.12.1.1")]
|
||||
|
@ -45,7 +45,7 @@
|
||||
<UpdateRequired>false</UpdateRequired>
|
||||
<MapFileExtensions>true</MapFileExtensions>
|
||||
<ApplicationRevision>0</ApplicationRevision>
|
||||
<ApplicationVersion>0.12.0.%2a</ApplicationVersion>
|
||||
<ApplicationVersion>0.12.1.%2a</ApplicationVersion>
|
||||
<IsWebBootstrapper>false</IsWebBootstrapper>
|
||||
<UseApplicationTrust>false</UseApplicationTrust>
|
||||
<BootstrapperEnabled>true</BootstrapperEnabled>
|
||||
|
@ -46,7 +46,7 @@
|
||||
<UpdateRequired>false</UpdateRequired>
|
||||
<MapFileExtensions>true</MapFileExtensions>
|
||||
<ApplicationRevision>0</ApplicationRevision>
|
||||
<ApplicationVersion>0.12.0.%2a</ApplicationVersion>
|
||||
<ApplicationVersion>0.12.1.%2a</ApplicationVersion>
|
||||
<UseApplicationTrust>false</UseApplicationTrust>
|
||||
<BootstrapperEnabled>true</BootstrapperEnabled>
|
||||
</PropertyGroup>
|
||||
|
@ -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.12.0.0")]
|
||||
[assembly: AssemblyFileVersion("0.12.0.0")]
|
||||
[assembly: AssemblyVersion("0.12.1.0")]
|
||||
[assembly: AssemblyFileVersion("0.12.1.0")]
|
||||
|
@ -46,7 +46,7 @@
|
||||
<UpdateRequired>false</UpdateRequired>
|
||||
<MapFileExtensions>true</MapFileExtensions>
|
||||
<ApplicationRevision>0</ApplicationRevision>
|
||||
<ApplicationVersion>0.12.0.%2a</ApplicationVersion>
|
||||
<ApplicationVersion>0.12.1.%2a</ApplicationVersion>
|
||||
<UseApplicationTrust>false</UseApplicationTrust>
|
||||
<BootstrapperEnabled>true</BootstrapperEnabled>
|
||||
</PropertyGroup>
|
||||
|
@ -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.12.0.0")]
|
||||
[assembly: AssemblyFileVersion("0.12.0.0")]
|
||||
[assembly: AssemblyVersion("0.12.1.0")]
|
||||
[assembly: AssemblyFileVersion("0.12.1.0")]
|
||||
|
@ -49,5 +49,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.12.0.0")]
|
||||
[assembly: AssemblyFileVersion("0.12.0.0")]
|
||||
[assembly: AssemblyVersion("0.12.1.0")]
|
||||
[assembly: AssemblyFileVersion("0.12.1.0")]
|
||||
|
@ -50,7 +50,7 @@ class TCompoundOperationException : TException {
|
||||
/// The Thrift version string, used for informative purposes.
|
||||
// Note: This is currently hardcoded, but will likely be filled in by the build
|
||||
// system in future versions.
|
||||
enum VERSION = "0.12.0";
|
||||
enum VERSION = "0.12.1";
|
||||
|
||||
/**
|
||||
* Functions used for logging inside Thrift.
|
||||
|
@ -16,7 +16,7 @@
|
||||
# under the License.
|
||||
|
||||
name: thrift
|
||||
version: 0.12.0
|
||||
version: 0.12.1
|
||||
description: >
|
||||
A Dart library for Apache Thrift
|
||||
author: Apache Thrift Developers <dev@thrift.apache.org>
|
||||
|
@ -27,7 +27,7 @@ uses
|
||||
Thrift.Protocol;
|
||||
|
||||
const
|
||||
Version = '0.12.0';
|
||||
Version = '0.12.1';
|
||||
|
||||
type
|
||||
TException = Thrift.Exception.TException; // compatibility alias
|
||||
|
@ -22,7 +22,7 @@
|
||||
{description, "Thrift bindings"},
|
||||
|
||||
% The version of the applicaton
|
||||
{vsn, "0.12.0"},
|
||||
{vsn, "0.12.1"},
|
||||
|
||||
% All modules used by the application.
|
||||
{modules, [
|
||||
|
@ -19,7 +19,7 @@
|
||||
|
||||
package thrift
|
||||
|
||||
// Autogenerated by Thrift Compiler (0.12.0)
|
||||
// Autogenerated by Thrift Compiler (0.12.1)
|
||||
// DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING
|
||||
|
||||
/* THE FOLLOWING THRIFT FILE WAS USED TO CREATE THIS
|
||||
|
@ -71,8 +71,8 @@ either from the official ASF repo, or via the github mirror.
|
||||
|
||||
- To set up any **stable version**, choose the appropriate branch (e.g. `0.10.0`):
|
||||
|
||||
- `haxelib git thrift https://git.apache.org/thrift.git 0.12.0 lib/haxe`
|
||||
- `haxelib git thrift https://github.com/apache/thrift.git 0.12.0 lib/haxe`
|
||||
- `haxelib git thrift https://git.apache.org/thrift.git 0.12.1 lib/haxe`
|
||||
- `haxelib git thrift https://github.com/apache/thrift.git 0.12.1 lib/haxe`
|
||||
|
||||
- To set up the current **development version**, use the `master` branch:
|
||||
|
||||
|
@ -4,7 +4,7 @@
|
||||
"license": "Apache",
|
||||
"tags": ["thrift", "rpc", "serialization", "cross", "framework"],
|
||||
"description": "Haxe bindings for the Apache Thrift RPC and serialization framework",
|
||||
"version": "0.12.0",
|
||||
"version": "0.12.1",
|
||||
"releasenote": "Licensed under Apache License, Version 2.0. The Apache Thrift compiler needs to be installed separately.",
|
||||
"contributors": ["Apache Software Foundation (ASF)"],
|
||||
"dependencies": { },
|
||||
|
@ -18,7 +18,7 @@
|
||||
--
|
||||
|
||||
Name: thrift
|
||||
Version: 0.12.0
|
||||
Version: 0.12.1
|
||||
Cabal-Version: 1.24
|
||||
License: Apache
|
||||
Category: Foreign
|
||||
|
@ -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.12.0
|
||||
thrift.version=0.12.1
|
||||
thrift.groupid=org.apache.thrift
|
||||
release=false
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "thrift",
|
||||
"version": "0.12.0",
|
||||
"version": "0.12.1",
|
||||
"devDependencies": {
|
||||
"grunt": "^1.0.2",
|
||||
"grunt-cli": "^1.2.0",
|
||||
|
@ -46,7 +46,7 @@ var Thrift = {
|
||||
* @const {string} Version
|
||||
* @memberof Thrift
|
||||
*/
|
||||
Version: '0.12.0',
|
||||
Version: '0.12.1',
|
||||
|
||||
/**
|
||||
* Thrift IDL type string to Id mapping.
|
||||
|
@ -25,7 +25,7 @@ THttpTransport = TTransportBase:new{
|
||||
wBuf = '',
|
||||
rBuf = '',
|
||||
CRLF = '\r\n',
|
||||
VERSION = '0.12.0',
|
||||
VERSION = '0.12.1',
|
||||
isServer = true
|
||||
}
|
||||
|
||||
|
@ -48,7 +48,7 @@ function ttable_size(t)
|
||||
return count
|
||||
end
|
||||
|
||||
version = '0.12.0'
|
||||
version = '0.12.1'
|
||||
|
||||
TType = {
|
||||
STOP = 0,
|
||||
|
@ -52,5 +52,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.12.0.0")]
|
||||
[assembly: AssemblyFileVersion("0.12.0.0")]
|
||||
[assembly: AssemblyVersion("0.12.1.0")]
|
||||
[assembly: AssemblyFileVersion("0.12.1.0")]
|
||||
|
@ -149,7 +149,7 @@ namespace Thrift.Transports.Client
|
||||
}
|
||||
|
||||
httpClient.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue("application/x-thrift"));
|
||||
httpClient.DefaultRequestHeaders.UserAgent.Add(new ProductInfoHeaderValue("THttpClientTransport", "0.12.0"));
|
||||
httpClient.DefaultRequestHeaders.UserAgent.Add(new ProductInfoHeaderValue("THttpClientTransport", "0.12.1"));
|
||||
|
||||
if (CustomHeaders != null)
|
||||
{
|
||||
|
@ -1,5 +1,5 @@
|
||||
Name: libthrift-ocaml
|
||||
Version: 0.12.0
|
||||
Version: 0.12.1
|
||||
OASISFormat: 0.3
|
||||
Synopsis: OCaml bindings for the Apache Thrift RPC system
|
||||
Authors: Apache Thrift Developers <dev@thrift.apache.org>
|
||||
|
@ -31,6 +31,6 @@ use warnings;
|
||||
#
|
||||
|
||||
package Thrift;
|
||||
use version 0.77; our $VERSION = version->declare("v0.12.0_0");
|
||||
use version 0.77; our $VERSION = version->declare("v0.12.1");
|
||||
|
||||
1;
|
||||
|
@ -53,7 +53,7 @@ apc_fetch(), apc_store()
|
||||
|
||||
# Breaking Changes
|
||||
|
||||
## 0.12.0
|
||||
## 0.12.x
|
||||
|
||||
1. [PSR-4](https://www.php-fig.org/psr/psr-4/) loader is now the default. If you want to use class maps instead, use `-gen php:classmap`.
|
||||
|
||||
|
@ -90,7 +90,7 @@ def run_setup(with_binary):
|
||||
twisted_deps = ['twisted']
|
||||
|
||||
setup(name='thrift',
|
||||
version='0.12.0',
|
||||
version='0.12.1',
|
||||
description='Python bindings for the Apache Thrift RPC system',
|
||||
author='Thrift Developers',
|
||||
author_email='dev@thrift.apache.org',
|
||||
|
@ -3,7 +3,7 @@ $:.push File.expand_path("../lib", __FILE__)
|
||||
|
||||
Gem::Specification.new do |s|
|
||||
s.name = 'thrift'
|
||||
s.version = '0.12.0'
|
||||
s.version = '0.12.1'
|
||||
s.authors = ['Thrift Developers']
|
||||
s.email = ['dev@thrift.apache.org']
|
||||
s.homepage = 'http://thrift.apache.org'
|
||||
|
@ -1,7 +1,7 @@
|
||||
[package]
|
||||
name = "thrift"
|
||||
description = "Rust bindings for the Apache Thrift RPC system"
|
||||
version = "0.12.0"
|
||||
version = "0.12.1"
|
||||
license = "Apache-2.0"
|
||||
authors = ["Apache Thrift Developers <dev@thrift.apache.org>"]
|
||||
homepage = "http://thrift.apache.org"
|
||||
|
@ -46,7 +46,7 @@ It does not currently use any Rust 2018 features.
|
||||
|
||||
Breaking changes are minimized. When they are made they will be outlined below with transition guidelines.
|
||||
|
||||
##### Thrift 0.12.0
|
||||
##### Thrift 0.12.x
|
||||
|
||||
* **[THRIFT-4529]** - Rust enum variants are now camel-cased instead of uppercased to conform to Rust naming conventions
|
||||
|
||||
|
@ -17,7 +17,7 @@
|
||||
specific language governing permissions and limitations
|
||||
under the License.
|
||||
-->
|
||||
<!-- Apache Thrift Smalltalk library version 0.12.0 -->
|
||||
<!-- Apache Thrift Smalltalk library version 0.12.1 -->
|
||||
<package>
|
||||
<name>libthrift-st</name>
|
||||
<file>thrift.st</file>
|
||||
|
2
package-lock.json
generated
2
package-lock.json
generated
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "thrift",
|
||||
"version": "0.12.0",
|
||||
"version": "0.12.1",
|
||||
"lockfileVersion": 1,
|
||||
"requires": true,
|
||||
"dependencies": {
|
||||
|
@ -6,7 +6,7 @@
|
||||
"type": "git",
|
||||
"url": "https://git-wip-us.apache.org/repos/asf/thrift.git"
|
||||
},
|
||||
"version": "0.12.0",
|
||||
"version": "0.12.1",
|
||||
"author": {
|
||||
"name": "Apache Thrift Developers",
|
||||
"email": "dev@thrift.apache.org",
|
||||
|
@ -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.12.0
|
||||
sonar.projectVersion=0.12.1
|
||||
# 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.12.0.jar
|
||||
module1.sonar.binaries=build/libs/libthrift-0.12.1.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.12.0.jar
|
||||
module2.sonar.libraries=lib/java/build/deps/*.jar,lib/java/build/libs/libthrift-0.12.1.jar
|
||||
module2.sonar.language=java
|
||||
|
||||
module3.sonar.projectName=Apache Thrift - JavaScript Library
|
||||
|
@ -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.12.0.0")]
|
||||
[assembly: AssemblyFileVersion("0.12.0.0")]
|
||||
[assembly: AssemblyVersion("0.12.1.0")]
|
||||
[assembly: AssemblyFileVersion("0.12.1.0")]
|
||||
|
@ -46,7 +46,7 @@
|
||||
<UpdateRequired>false</UpdateRequired>
|
||||
<MapFileExtensions>true</MapFileExtensions>
|
||||
<ApplicationRevision>0</ApplicationRevision>
|
||||
<ApplicationVersion>0.12.0.%2a</ApplicationVersion>
|
||||
<ApplicationVersion>0.12.1.%2a</ApplicationVersion>
|
||||
<UseApplicationTrust>false</UseApplicationTrust>
|
||||
<BootstrapperEnabled>true</BootstrapperEnabled>
|
||||
</PropertyGroup>
|
||||
|
@ -16,7 +16,7 @@
|
||||
# under the License.
|
||||
|
||||
name: thrift_test_client
|
||||
version: 0.12.0
|
||||
version: 0.12.1
|
||||
description: A client integration test for the Dart Thrift library
|
||||
author: Apache Thrift Developers <dev@thrift.apache.org>
|
||||
homepage: http://thrift.apache.org
|
||||
|
@ -22,7 +22,7 @@
|
||||
{description, "Thrift cross language test"},
|
||||
|
||||
% The version of the applicaton
|
||||
{vsn, "0.12.0"},
|
||||
{vsn, "0.12.1"},
|
||||
|
||||
% All modules used by the application.
|
||||
{modules, [
|
||||
|
@ -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.12.0.0")]
|
||||
[assembly: AssemblyFileVersion("0.12.0.0")]
|
||||
[assembly: AssemblyVersion("0.12.1.0")]
|
||||
[assembly: AssemblyFileVersion("0.12.1.0")]
|
||||
|
@ -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.12.0.0")]
|
||||
[assembly: AssemblyFileVersion("0.12.0.0")]
|
||||
[assembly: AssemblyVersion("0.12.1.0")]
|
||||
[assembly: AssemblyFileVersion("0.12.1.0")]
|
||||
|
@ -16,7 +16,7 @@
|
||||
# under the License.
|
||||
|
||||
name: tutorial_client
|
||||
version: 0.12.0
|
||||
version: 0.12.1
|
||||
description: A Dart client implementation of the Apache Thrift tutorial
|
||||
author: Apache Thrift Developers <dev@thrift.apache.org>
|
||||
homepage: http://thrift.apache.org
|
||||
|
@ -16,7 +16,7 @@
|
||||
# under the License.
|
||||
|
||||
name: tutorial_console_client
|
||||
version: 0.12.0
|
||||
version: 0.12.1
|
||||
description: >
|
||||
A Dart console client to implementation of the Apache Thrift tutorial
|
||||
author: Apache Thrift Developers <dev@thrift.apache.org>
|
||||
|
@ -16,7 +16,7 @@
|
||||
# under the License.
|
||||
|
||||
name: tutorial_server
|
||||
version: 0.12.0
|
||||
version: 0.12.1
|
||||
description: A Dart server to support the Apache Thrift tutorial
|
||||
author: Apache Thrift Developers <dev@thrift.apache.org>
|
||||
homepage: http://thrift.apache.org
|
||||
|
@ -97,7 +97,7 @@
|
||||
<VersionInfoKeys>
|
||||
<VersionInfoKeys Name="CompanyName"/>
|
||||
<VersionInfoKeys Name="FileDescription">Thrift Tutorial</VersionInfoKeys>
|
||||
<VersionInfoKeys Name="FileVersion">0.12.0.0</VersionInfoKeys>
|
||||
<VersionInfoKeys Name="FileVersion">0.12.1.0</VersionInfoKeys>
|
||||
<VersionInfoKeys Name="InternalName">DelphiClient</VersionInfoKeys>
|
||||
<VersionInfoKeys Name="LegalCopyright">Copyright © 2012 The Apache Software Foundation</VersionInfoKeys>
|
||||
<VersionInfoKeys Name="LegalTrademarks"/>
|
||||
|
@ -96,7 +96,7 @@
|
||||
<VersionInfoKeys>
|
||||
<VersionInfoKeys Name="CompanyName"/>
|
||||
<VersionInfoKeys Name="FileDescription">Thrift Tutorial</VersionInfoKeys>
|
||||
<VersionInfoKeys Name="FileVersion">0.12.0.0</VersionInfoKeys>
|
||||
<VersionInfoKeys Name="FileVersion">0.12.1.0</VersionInfoKeys>
|
||||
<VersionInfoKeys Name="InternalName">DelphiServer</VersionInfoKeys>
|
||||
<VersionInfoKeys Name="LegalCopyright">Copyright © 2012 The Apache Software Foundation</VersionInfoKeys>
|
||||
<VersionInfoKeys Name="LegalTrademarks"/>
|
||||
|
@ -18,7 +18,7 @@
|
||||
--
|
||||
|
||||
Name: ThriftTutorial
|
||||
Version: 0.12.0
|
||||
Version: 0.12.1
|
||||
Cabal-Version: >= 1.4
|
||||
License: OtherLicense
|
||||
Category: Foreign
|
||||
|
@ -1,5 +1,5 @@
|
||||
Name: tutorial
|
||||
Version: 0.12.0
|
||||
Version: 0.12.1
|
||||
OASISFormat: 0.3
|
||||
Synopsis: OCaml Tutorial example
|
||||
Authors: Apache Thrift Developers <dev@thrift.apache.org>
|
||||
|
Loading…
Reference in New Issue
Block a user