Skip to content

Commit ac08453

Browse files
authored
Merge pull request #7 from apiiro/ohad/versrion-1.6
bump to version 1.0.3
2 parents 8f982c5 + 7c6907a commit ac08453

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

make-nuget.sh

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,32 @@
11
#!/bin/bash
22

33
# NOTE:
4-
# Until we'll set the version as an argument make sure to change the version in the 'nuget push' lines to matach the version in binaries.
4+
# Until we'll set the version as an argument make sure to change the version in the 'nuget push' lines to match the version in binaries.
55

66
WORK_DIR=`pwd`
77

88
pushd ./src/LanguageServer/Impl
99
dotnet pack --configuration Release
10-
dotnet nuget push $WORK_DIR/output/bin/Release/Microsoft.Python.LanguageServer.1.0.2.nupkg --source "github" --skip-duplicate --no-symbols true
10+
dotnet nuget push $WORK_DIR/output/bin/Release/Microsoft.Python.LanguageServer.1.0.3.nupkg --source "github" --skip-duplicate --no-symbols true
1111
popd
1212

1313
pushd ./src/Analysis/Ast/Impl
1414
dotnet pack --configuration Release
15-
dotnet nuget push $WORK_DIR/output/bin/Release/Microsoft.Python.Analysis.1.0.2.nupkg --source "github" --skip-duplicate --no-symbols true
15+
dotnet nuget push $WORK_DIR/output/bin/Release/Microsoft.Python.Analysis.1.0.3.nupkg --source "github" --skip-duplicate --no-symbols true
1616
popd
1717

1818
pushd ./src/Analysis/Core/Impl
1919
dotnet pack --configuration Release
20-
dotnet nuget push $WORK_DIR/output/bin/Release/Microsoft.Python.Analysis.Core.1.0.2.nupkg --source "github" --skip-duplicate --no-symbols true
20+
dotnet nuget push $WORK_DIR/output/bin/Release/Microsoft.Python.Analysis.Core.1.0.3.nupkg --source "github" --skip-duplicate --no-symbols true
2121
popd
2222

2323
pushd ./src/Parsing/Impl
2424
dotnet pack --configuration Release
25-
dotnet nuget push $WORK_DIR/output/bin/Release/Microsoft.Python.Parsing.1.0.2.nupkg --source "github" --skip-duplicate --no-symbols true
25+
dotnet nuget push $WORK_DIR/output/bin/Release/Microsoft.Python.Parsing.1.0.3.nupkg --source "github" --skip-duplicate --no-symbols true
2626
popd
2727

2828
pushd ./src/Core/Impl
2929
dotnet pack --configuration Release
30-
dotnet nuget push $WORK_DIR/output/bin/Release/Microsoft.Python.Core.1.0.2.nupkg --source "github" --skip-duplicate --no-symbols true
30+
dotnet nuget push $WORK_DIR/output/bin/Release/Microsoft.Python.Core.1.0.3.nupkg --source "github" --skip-duplicate --no-symbols true
3131
popd
3232

src/Analysis/Ast/Impl/Microsoft.Python.Analysis.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<RootNamespace>Microsoft.Python.Analysis</RootNamespace>
55
<AssemblyName>Microsoft.Python.Analysis</AssemblyName>
66
<PackageId>Microsoft.Python.Analysis</PackageId>
7-
<Version>1.0.2</Version>
7+
<Version>1.0.3</Version>
88
<Authors>Apiiro</Authors>
99
<Company>Apiiro</Company>
1010
<RepositoryUrl>https://github.com/apiiro/python-language-server</RepositoryUrl>

src/Analysis/Core/Impl/Microsoft.Python.Analysis.Core.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<RootNamespace>Microsoft.Python.Analysis</RootNamespace>
55
<AssemblyName>Microsoft.Python.Analysis.Core</AssemblyName>
66
<PackageId>Microsoft.Python.Analysis.Core</PackageId>
7-
<Version>1.0.2</Version>
7+
<Version>1.0.3</Version>
88
<Authors>Apiiro</Authors>
99
<Company>Apiiro</Company>
1010
<RepositoryUrl>https://github.com/apiiro/python-language-server</RepositoryUrl>

src/Core/Impl/Microsoft.Python.Core.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<RootNamespace>Microsoft.Python.Core</RootNamespace>
55
<AssemblyName>Microsoft.Python.Core</AssemblyName>
66
<PackageId>Microsoft.Python.Core</PackageId>
7-
<Version>1.0.2</Version>
7+
<Version>1.0.3</Version>
88
<Authors>Apiiro</Authors>
99
<Company>Apiiro</Company>
1010
<RepositoryUrl>https://github.com/apiiro/python-language-server</RepositoryUrl>

src/LanguageServer/Impl/Microsoft.Python.LanguageServer.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<RootNamespace>Microsoft.Python.LanguageServer</RootNamespace>
55
<AssemblyName>Microsoft.Python.LanguageServer</AssemblyName>
66
<PackageId>Microsoft.Python.LanguageServer</PackageId>
7-
<Version>1.0.2</Version>
7+
<Version>1.0.3</Version>
88
<Authors>Apiiro</Authors>
99
<Company>Apiiro</Company>
1010
<PackageDescription>Apiiro Python Language Server</PackageDescription>

src/Parsing/Impl/Microsoft.Python.Parsing.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<RootNamespace>Microsoft.Python.Parsing</RootNamespace>
55
<AssemblyName>Microsoft.Python.Parsing</AssemblyName>
66
<PackageId>Microsoft.Python.Parsing</PackageId>
7-
<Version>1.0.2</Version>
7+
<Version>1.0.3</Version>
88
<Authors>Apiiro</Authors>
99
<Company>Apiiro</Company>
1010
<RepositoryUrl>https://github.com/apiiro/python-language-server</RepositoryUrl>

0 commit comments

Comments
 (0)