Skip to content

Commit cff7c89

Browse files
committed
Merge branch 'develop' into abibell-patch-1
2 parents 8fc9fc3 + fd66ae9 commit cff7c89

File tree

1,398 files changed

+32551
-13996
lines changed

Some content is hidden

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

1,398 files changed

+32551
-13996
lines changed

.editorconfig

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,3 +19,7 @@ indent_size = 4
1919
[*.markdown]
2020
indent_style = spaces
2121
indent_size = 2
22+
23+
[*.json]
24+
indent_style = spaces
25+
indent_size = 2

build.bat

Lines changed: 17 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -20,22 +20,24 @@ if not exist build\tools\NUnit.Runners\tools\nunit-console.exe (
2020

2121
REM we need wintersmith to build our documentation which in turn needs npm/node
2222
REM installing and calling this locally so that yours and CI's systems do not need to be configured prior to running build.bat
23-
if not exist build\tools\Node.js\node.exe (
24-
ECHO Local node not found.. Installing..
25-
"build\tools\nuget\nuget.exe" "install" "node.js" "-OutputDirectory" "build\tools" "-ExcludeVersion" "-Prerelease"
26-
)
27-
if not exist build\tools\Npm\node_modules\npm\cli.js (
28-
ECHO Local npm not found.. Installing..
29-
"build\tools\nuget\nuget.exe" "install" "npm" "-OutputDirectory" "build\tools" "-ExcludeVersion" "-Prerelease"
30-
)
31-
if not exist build\tools\node_modules\wintersmith\bin\wintersmith (
32-
ECHO wintersmith not found.. Installing..
33-
cd build\tools
3423

35-
"Node.js\node.exe" "Npm\node_modules\npm\cli.js" install wintersmith
3624

37-
cd ..\..
38-
)
25+
REM if not exist build\tools\Node.js\node.exe (
26+
REM ECHO Local node not found.. Installing..
27+
REM "build\tools\nuget\nuget.exe" "install" "node.js" "-OutputDirectory" "build\tools" "-ExcludeVersion" "-Prerelease"
28+
REM )
29+
REM if not exist build\tools\Npm\node_modules\npm\cli.js (
30+
REM ECHO Local npm not found.. Installing..
31+
REM "build\tools\nuget\nuget.exe" "install" "npm" "-OutputDirectory" "build\tools" "-ExcludeVersion" "-Prerelease"
32+
REM )
33+
REM if not exist build\tools\node_modules\wintersmith\bin\wintersmith (
34+
REM ECHO wintersmith not found.. Installing..
35+
REM cd build\tools
36+
REM
37+
REM "Node.js\node.exe" "Npm\node_modules\npm\cli.js" install wintersmith
38+
REM
39+
REM cd ..\..
40+
REM )
3941

4042

4143
SET TARGET="Build"
@@ -48,4 +50,4 @@ IF NOT [%2]==[] (set VERSION="%2")
4850
shift
4951
shift
5052

51-
"build\tools\FAKE\tools\Fake.exe" "build\build.fsx" "target=%TARGET%" "version=%VERSION%"
53+
"build\tools\FAKE\tools\Fake.exe" "build\\build.fsx" "target=%TARGET%" "version=%VERSION%"

build/Elasticsearch.Net.Connection.Thrift.nuspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
33
<metadata>
44
<id>Elasticsearch.Net.Connection.Thrift</id>
5-
<version>1.0.0-ci20140604105901</version>
5+
<version>1.0.0-rc1</version>
66
<title>Elasticsearch.Net.Connection.Thrift - Thrift support for Elasticsearch.Net</title>
77
<authors>Elasticsearch Inc. and contributors</authors>
88
<owners>Elasticsearch Inc.</owners>
@@ -13,7 +13,7 @@
1313
<requireLicenseAcceptance>false</requireLicenseAcceptance>
1414
<description>An IConnection implementation that utilizes Apache Thrift to talk with elasticsearch</description>
1515
<dependencies>
16-
<dependency id="Elasticsearch.Net" version="1.0.0-ci20140604105901"/>
16+
<dependency id="Elasticsearch.Net" version="1.0.0-rc1"/>
1717
<dependency id="NetReflector" />
1818
</dependencies>
1919
<tags>elasticsearch elastic search lucene thrift nest</tags>

build/Elasticsearch.Net.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
33
<metadata>
44
<id>Elasticsearch.Net</id>
5-
<version>1.0.0-ci20140604105901</version>
5+
<version>1.0.0-rc1</version>
66
<title>Elasticsearch.Net - official low level elasticsearch client</title>
77
<authors>Elasticsearch Inc. and contributors</authors>
88
<owners>Elasticsearch Inc.</owners>

build/NEST.nuspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
33
<metadata>
44
<id>NEST</id>
5-
<version>1.0.0-ci20140604105901</version>
5+
<version>1.0.0-rc1</version>
66
<title>NEST - Elasticsearch Client</title>
77
<authors>Elasticsearch Inc. and contributors</authors>
88
<owners>Elasticsearch Inc.</owners>
@@ -13,7 +13,7 @@
1313
<requireLicenseAcceptance>false</requireLicenseAcceptance>
1414
<description>Elasticsearch client, strongly typed interface to Elasticsearch. Fluent request builder, mapped responses and powerful query dsl. Uses and exposes Elasticsearch.Net</description>
1515
<dependencies>
16-
<dependency id="Elasticsearch.Net" version="1.0.0-ci20140604105901"/>
16+
<dependency id="Elasticsearch.Net" version="1.0.0-rc1"/>
1717
<dependency id="Newtonsoft.Json" version="6.0.1" />
1818
</dependencies>
1919
<tags>elasticsearch elastic search lucene nest</tags>

build/NESTBuild.proj

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

build/build.fsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,6 @@ Target "Nightly" (fun _ ->
227227

228228

229229
"Build"
230-
==> "Docs"
231230
==> "Release"
232231

233232
"DocsPreview"
19.5 KB
Binary file not shown.

dep/repositories.config

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
<repositories>
33
<repository path="..\src\CodeGeneration\CodeGeneration.LowLevelClient\packages.config" />
44
<repository path="..\src\CodeGeneration\CodeGeneration.YamlTestsRunner\packages.config" />
5-
<repository path="..\src\Connections\Elasticsearch.Net.Connection.HttpClient\packages.config" />
65
<repository path="..\src\Connections\Elasticsearch.Net.Connection.Thrift\packages.config" />
76
<repository path="..\src\Elasticsearch.Net\packages.config" />
87
<repository path="..\src\Nest\packages.config" />

0 commit comments

Comments
 (0)