Skip to content

Commit

Permalink
Merge pull request #7 from apiiro/ohad/versrion-1.6
Browse files Browse the repository at this point in the history
bump to version 1.0.3
  • Loading branch information
ohadApiiro authored Nov 15, 2023
2 parents 8f982c5 + 7c6907a commit ac08453
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
12 changes: 6 additions & 6 deletions make-nuget.sh
Original file line number Diff line number Diff line change
@@ -1,32 +1,32 @@
#!/bin/bash

# NOTE:
# 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.
# 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.

WORK_DIR=`pwd`

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

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

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

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

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

2 changes: 1 addition & 1 deletion src/Analysis/Ast/Impl/Microsoft.Python.Analysis.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<RootNamespace>Microsoft.Python.Analysis</RootNamespace>
<AssemblyName>Microsoft.Python.Analysis</AssemblyName>
<PackageId>Microsoft.Python.Analysis</PackageId>
<Version>1.0.2</Version>
<Version>1.0.3</Version>
<Authors>Apiiro</Authors>
<Company>Apiiro</Company>
<RepositoryUrl>https://github.com/apiiro/python-language-server</RepositoryUrl>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<RootNamespace>Microsoft.Python.Analysis</RootNamespace>
<AssemblyName>Microsoft.Python.Analysis.Core</AssemblyName>
<PackageId>Microsoft.Python.Analysis.Core</PackageId>
<Version>1.0.2</Version>
<Version>1.0.3</Version>
<Authors>Apiiro</Authors>
<Company>Apiiro</Company>
<RepositoryUrl>https://github.com/apiiro/python-language-server</RepositoryUrl>
Expand Down
2 changes: 1 addition & 1 deletion src/Core/Impl/Microsoft.Python.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<RootNamespace>Microsoft.Python.Core</RootNamespace>
<AssemblyName>Microsoft.Python.Core</AssemblyName>
<PackageId>Microsoft.Python.Core</PackageId>
<Version>1.0.2</Version>
<Version>1.0.3</Version>
<Authors>Apiiro</Authors>
<Company>Apiiro</Company>
<RepositoryUrl>https://github.com/apiiro/python-language-server</RepositoryUrl>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<RootNamespace>Microsoft.Python.LanguageServer</RootNamespace>
<AssemblyName>Microsoft.Python.LanguageServer</AssemblyName>
<PackageId>Microsoft.Python.LanguageServer</PackageId>
<Version>1.0.2</Version>
<Version>1.0.3</Version>
<Authors>Apiiro</Authors>
<Company>Apiiro</Company>
<PackageDescription>Apiiro Python Language Server</PackageDescription>
Expand Down
2 changes: 1 addition & 1 deletion src/Parsing/Impl/Microsoft.Python.Parsing.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<RootNamespace>Microsoft.Python.Parsing</RootNamespace>
<AssemblyName>Microsoft.Python.Parsing</AssemblyName>
<PackageId>Microsoft.Python.Parsing</PackageId>
<Version>1.0.2</Version>
<Version>1.0.3</Version>
<Authors>Apiiro</Authors>
<Company>Apiiro</Company>
<RepositoryUrl>https://github.com/apiiro/python-language-server</RepositoryUrl>
Expand Down

0 comments on commit ac08453

Please sign in to comment.