-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1201 from ably/release/1.2.10
Release/1.2.10
- Loading branch information
Showing
13 changed files
with
95 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
Copyright 2015-2022 Ably Real-time Ltd (ably.com) | ||
Copyright 2015-2023 ably Real-time Ltd (ably.com) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
@echo off | ||
cls | ||
if "%~1"=="" (fake run build.fsx) else (fake run build.fsx -t %*) | ||
dotnet tool restore | ||
if "%~1"=="" (dotnet fake run build.fsx) else (dotnet fake run build.fsx -t %*) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,9 @@ | ||
#!/bin/bash | ||
|
||
#! /bin/bash | ||
dotnet tool restore | ||
|
||
dotnet fake run build.fsx -t $1 | ||
if [ $# -eq 0 ] | ||
then | ||
dotnet fake run build.fsx | ||
else | ||
dotnet fake run build.fsx -t $@ | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,14 @@ | ||
#! /bin/bash | ||
|
||
dotnet tool restore | ||
|
||
dotnet fake run build.fsx -t PushPackage -v $1 | ||
echo "====================================================================================" | ||
echo " Script for building ably.io.push.android.*.nupkg and ably.io.push.ios.*.nupkg" | ||
echo "====================================================================================" | ||
echo " " | ||
echo "Warning : you should run this script on mac since it also needs to build package for iOS" | ||
echo " " | ||
if [ $# -eq 0 ] | ||
then | ||
echo "Provide latest version number like package-push.sh 1.2.8" | ||
else | ||
dotnet tool restore | ||
dotnet fake run build.fsx -t PushPackage -v $1 | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,5 @@ | ||
@echo off | ||
echo ====================================================== | ||
echo Script for building ably.io.*.nupkg | ||
echo ====================================================== | ||
if "%~1"=="" (echo "Provide version number like package.cmd 1.1.15") else (build.cmd Package -v %*) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
#! /bin/bash | ||
echo "======================================================" | ||
echo " Script for building ably.io.*.nupkg " | ||
echo "======================================================" | ||
echo " " | ||
if [ $# -eq 0 ] | ||
then | ||
echo "Provide latest version number like package.sh 1.2.8" | ||
else | ||
./build.sh Package -v $1 | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
@echo off | ||
if "%~1"=="" (echo "Provide latest version number like unity-plugins-updater.cmd 1.2.8") else ( | ||
dotnet fake run build.fsx -t Build.NetStandard | ||
copy src\IO.Ably.NETStandard20\bin\Release\netstandard2.0\IO.Ably.dll unity\Assets\Ably\Plugins | ||
copy src\IO.Ably.NETStandard20\bin\Release\netstandard2.0\IO.Ably.pdb unity\Assets\Ably\Plugins | ||
copy src\IO.Ably.NETStandard20\bin\Release\netstandard2.0\IO.Ably.DeltaCodec.dll unity\Assets\Ably\Plugins | ||
copy src\IO.Ably.NETStandard20\bin\Release\netstandard2.0\IO.Ably.DeltaCodec.pdb unity\Assets\Ably\Plugins | ||
echo %~1 > unity\Assets\Ably\version.txt | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
if [ $# -eq 0 ] | ||
then | ||
echo "Provide latest version number like unity-plugins-updater.sh 1.2.8" | ||
else | ||
dotnet fake run build.fsx -t Build.NetStandard | ||
cp src/IO.Ably.NETStandard20/bin/Release/netstandard2.0/IO.Ably.dll unity/Assets/Ably/Plugins | ||
cp src/IO.Ably.NETStandard20/bin/Release/netstandard2.0/IO.Ably.pdb unity/Assets/Ably/Plugins | ||
cp src/IO.Ably.NETStandard20/bin/Release/netstandard2.0/IO.Ably.DeltaCodec.dll unity/Assets/Ably/Plugins | ||
cp src/IO.Ably.NETStandard20/bin/Release/netstandard2.0/IO.Ably.DeltaCodec.pdb unity/Assets/Ably/Plugins | ||
echo $1 > unity/Assets/Ably/version.txt | ||
fi |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
1.2.9 | ||
1.2.10 |