Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump yagna to pre-rel-v0.16.0-preview.ai.50 #209

Merged
merged 1 commit into from
Oct 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Golem.Package/Args.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ public class BuildArgs
{
[Option('t', "target", Default = "package", Required = false, HelpText = "Directory where binaries will be generated relative to working dir")]
public required string Target { get; set; }
[Option('y', "yagna-version", Default = "pre-rel-v0.16.0-preview.ai.49", Required = false, HelpText = "Yagna version github tag")]
[Option('y', "yagna-version", Default = "pre-rel-v0.16.0-preview.ai.50", Required = false, HelpText = "Yagna version github tag")]
public required string GolemVersion { get; set; }
[Option('r', "runtime-version", Default = "v0.2.7", Required = false, HelpText = "Runtime version github tag")]
public required string RuntimeVersion { get; set; }
Expand Down
2 changes: 1 addition & 1 deletion Golem.Tools/GolemPackageBuilder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ namespace Golem.Tools
{
public class PackageBuilder
{
public static string CURRENT_GOLEM_VERSION = "pre-rel-v0.16.0-preview.ai.49";
public static string CURRENT_GOLEM_VERSION = "pre-rel-v0.16.0-preview.ai.50";
public static string CURRENT_RUNTIME_VERSION = "v0.2.7";

internal static string InitTestDirectory(string name, bool cleanupData = true)
Expand Down
2 changes: 1 addition & 1 deletion MockGUI/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ dotnet run --project Golem.Package -- download --target modules --version v5.0.1
In case of building artifacts locally you can specify `yagna` and `runtimes` versions:

```sh
dotnet run --project Golem.Package -- build --target modules --yagna-version pre-rel-v0.16.0-preview.ai.49 --runtime-version v0.2.7
dotnet run --project Golem.Package -- build --target modules --yagna-version pre-rel-v0.16.0-preview.ai.50 --runtime-version v0.2.7
```

## Running
Expand Down
Loading