Skip to content

Commit 8411e18

Browse files
committed
Version 0.14.0
1 parent 0be1b7d commit 8411e18

File tree

21 files changed

+155
-115
lines changed

21 files changed

+155
-115
lines changed

.gitignore

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -278,6 +278,18 @@ project.lock.json
278278
/lib/go/src
279279
/lib/go/test/gopath/
280280
/lib/go/test/ThriftTest.thrift
281+
/lib/nodets/test-compiled/
282+
/lib/ocaml/_build/
283+
/lib/ocaml/_tags
284+
/lib/ocaml/configure
285+
/lib/ocaml/setup.data
286+
/lib/ocaml/setup.ml
287+
/lib/ocaml/myocamlbuild.ml
288+
/lib/ocaml/*/META
289+
/lib/ocaml/*/*.mllib
290+
/lib/ocaml/*/*.mldylib
291+
/lib/ocaml/Makefile
292+
/lib/ocaml/OCamlMakefile
281293
/lib/rs/target/
282294
/lib/rs/Cargo.lock
283295
/lib/rs/test/Cargo.lock
@@ -292,6 +304,8 @@ project.lock.json
292304
/lib/rs/*.iml
293305
/lib/rs/**/*.iml
294306
/lib/swift/.build
307+
/lib/ts/test/build/
308+
/lib/ts/test/gen-*
295309
/libtool
296310
/ltmain.sh
297311
/missing
@@ -343,6 +357,8 @@ project.lock.json
343357
/test/netstd/*.vspx
344358
/test/netstd/*.vsp
345359
/test/netstd/*.diagsession
360+
/test/netstd/Client/ThriftTest
361+
/test/netstd/Server/ThriftTest
346362
/test/netstd/Thrift
347363
/test/php/php_ext_dir/
348364
/test/rs/Cargo.lock
@@ -399,5 +415,7 @@ project.lock.json
399415
/tutorial/rs/bin
400416
/tutorial/rs/target
401417
/tutorial/rs/Cargo.lock
418+
/tutorial/netstd/Interfaces/shared
419+
/tutorial/netstd/Interfaces/tutorial
402420
/ylwrap
403421

Makefile.am

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -132,9 +132,15 @@ style-local:
132132
codespell --write-changes --skip=$(skipped_files) --disable-colors
133133

134134
EXTRA_DIST = \
135+
.asf.yaml \
135136
.clang-format \
136137
.dockerignore \
137138
.editorconfig \
139+
.eslintignore \
140+
.eslintrc.json \
141+
.flake8 \
142+
.gitattributes \
143+
.gitignore \
138144
.travis.yml \
139145
.rustfmt.toml \
140146
ApacheThrift.nuspec \
@@ -156,6 +162,7 @@ EXTRA_DIST = \
156162
LICENSE \
157163
NOTICE \
158164
package.json \
165+
package-lock.json \
159166
phpcs.xml.dist \
160167
README.md \
161168
sonar-project.properties \

compiler/cpp/Makefile.am

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,7 @@ EXTRA_DIST = \
115115
README.md \
116116
CMakeLists.txt \
117117
test \
118+
tests \
118119
$(WINDOWS_DIST)
119120

120121
#clean-local:

compiler/cpp/src/Makefile.am

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,3 +37,8 @@ thrift_libparse_a_SOURCES = thrift/thrifty.yy \
3737

3838
clean-local:
3939
$(RM) thrift/thriftl.cc thrift/thrifty.cc thrift/thrifty.h thrift/thrifty.hh
40+
41+
42+
EXTRA_DIST = \
43+
thrift/logging.cc \
44+
thrift/windows/config.h

compiler/cpp/src/thrift/generate/thrift-t_php_generator.o-a60a38e9

Whitespace-only changes.

lib/go/test/Makefile.am

Lines changed: 17 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -111,28 +111,30 @@ client: stubs
111111
EXTRA_DIST = \
112112
dontexportrwtest \
113113
tests \
114+
common \
114115
BinaryKeyTest.thrift \
116+
ConflictNamespaceServiceTest.thrift \
117+
ConflictNamespaceTestA.thrift \
118+
ConflictNamespaceTestB.thrift \
119+
ConflictNamespaceTestC.thrift \
120+
ConflictNamespaceTestD.thrift \
121+
ConflictNamespaceTestSuperThing.thrift \
122+
DontExportRWTest.thrift \
123+
DuplicateImportsTest.thrift \
124+
ErrorTest.thrift \
125+
EqualsTest.thrift \
115126
GoTagTest.thrift \
127+
IgnoreInitialismsTest.thrift \
116128
IncludesTest.thrift \
129+
InitialismsTest.thrift \
117130
MultiplexedProtocolTest.thrift \
118131
NamespacedTest.thrift \
132+
NamesTest.thrift \
119133
OnewayTest.thrift \
120134
OptionalFieldsTest.thrift \
121-
RequiredFieldTest.thrift \
122135
RefAnnotationFieldsTest.thrift \
123-
UnionDefaultValueTest.thrift \
124-
UnionBinaryTest.thrift \
136+
RequiredFieldTest.thrift \
125137
ServicesTest.thrift \
126138
TypedefFieldTest.thrift \
127-
ErrorTest.thrift \
128-
NamesTest.thrift \
129-
InitialismsTest.thrift \
130-
DontExportRWTest.thrift \
131-
IgnoreInitialismsTest.thrift \
132-
ConflictNamespaceTestA.thrift \
133-
ConflictNamespaceTestB.thrift \
134-
ConflictNamespaceTestC.thrift \
135-
ConflictNamespaceTestD.thrift \
136-
ConflictNamespaceTestSuperThing.thrift \
137-
ConflictNamespaceServiceTest.thrift \
138-
EqualsTest.thrift
139+
UnionBinaryTest.thrift \
140+
UnionDefaultValueTest.thrift

lib/netstd/Makefile.am

Lines changed: 15 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -41,25 +41,31 @@ clean-local:
4141

4242
EXTRA_DIST = \
4343
README.md \
44+
Directory.Build.props \
45+
Benchmarks/Thrift.Benchmarks \
4446
Tests/Thrift.IntegrationTests/Protocols \
4547
Tests/Thrift.IntegrationTests/Thrift.IntegrationTests.csproj \
46-
Tests/Thrift.PublicInterfaces.Compile.Tests/Thrift.PublicInterfaces.Compile.Tests.csproj \
47-
Tests/Thrift.PublicInterfaces.Compile.Tests/Properties/AssemblyInfo.cs \
48-
Tests/Thrift.PublicInterfaces.Compile.Tests/optional_required_default.thrift \
48+
Tests/Thrift.PublicInterfaces.Compile.Tests \
4949
Tests/Thrift.PublicInterfaces.Compile.Tests/CassandraTest.thrift \
50-
Tests/Thrift.Tests/Thrift.Tests.csproj \
51-
Tests/Thrift.Tests/Protocols \
50+
Tests/Thrift.PublicInterfaces.Compile.Tests/optional_required_default.thrift \
51+
Tests/Thrift.PublicInterfaces.Compile.Tests/Properties/AssemblyInfo.cs \
52+
Tests/Thrift.PublicInterfaces.Compile.Tests/Thrift.PublicInterfaces.Compile.Tests.csproj \
5253
Tests/Thrift.Tests/Collections \
53-
Thrift/TApplicationException.cs \
54-
Thrift/TBaseClient.cs \
55-
Thrift/TException.cs \
56-
Thrift/Thrift.csproj \
54+
Tests/Thrift.Tests/DataModel \
55+
Tests/Thrift.Tests/Protocols \
56+
Tests/Thrift.Tests/Thrift.Tests.csproj \
5757
Thrift/Collections \
5858
Thrift/Processor \
5959
Thrift/Properties \
6060
Thrift/Protocol \
6161
Thrift/Server \
62+
Thrift/TApplicationException.cs \
63+
Thrift/TBaseClient.cs \
64+
Thrift/TConfiguration.cs \
65+
Thrift/TException.cs \
66+
Thrift/Thrift.csproj \
6267
Thrift/Transport \
68+
Thrift/*.snk \
6369
Thrift.sln \
6470
build.cmd \
6571
build.sh \

lib/nodets/.gitignore

Lines changed: 0 additions & 1 deletion
This file was deleted.

lib/ocaml/.gitignore

Lines changed: 0 additions & 11 deletions
This file was deleted.

lib/perl/Makefile.am

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ EXTRA_DIST = \
4040
coding_standards.md \
4141
build-cpan-dist.sh \
4242
Makefile.PL \
43+
MANIFEST.SKIP \
4344
test.pl \
4445
lib/Thrift.pm \
4546
lib/Thrift.pm \
@@ -63,6 +64,7 @@ EXTRA_DIST = \
6364
lib/Thrift/UnixSocket.pm \
6465
lib/Thrift/Type.pm \
6566
lib/Thrift/Transport.pm \
67+
tools/FixupDist.pl \
6668
README.md
6769

6870
THRIFT = @top_builddir@/compiler/cpp/thrift

0 commit comments

Comments
 (0)