Skip to content

Commit

Permalink
version update
Browse files Browse the repository at this point in the history
  • Loading branch information
idanasulin2706 committed Mar 14, 2024
1 parent f03922c commit 841c760
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion src/Superstream/Core/SuperstreamManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ internal class SuperstreamManager
public static void InitializeNatsConnection(
string token,
ClientType clientType,
string host = "broker.superstream.dev"
string host = ""
)
{
var options = ConnectionFactory.GetDefaultOptions();
Expand Down
4 changes: 2 additions & 2 deletions src/Superstream/Superstream.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@
<LangVersion>12</LangVersion>

<PackageId>Superstream</PackageId>
<Version>1.0.1</Version>
<Version>1.0.2</Version>
<Authors>Memphis.dev team</Authors>
<Company>Memphis.dev</Company>
<PackageTags>Superstream</PackageTags>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<EnablePackageValidation>false</EnablePackageValidation>
<PackageValidationBaselineVersion>1.0.1</PackageValidationBaselineVersion>
<PackageValidationBaselineVersion>1.0.2</PackageValidationBaselineVersion>

</PropertyGroup>

Expand Down
2 changes: 1 addition & 1 deletion src/Superstream/SuperstreamOption.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,5 @@ public int LearningFactor
public string ConsumerGroup { get; set; } = null!;
public string Servers { get; set; } = null!;

public static SuperstreamOption Default => new() { Host = "broker.superstream.dev" };
public static SuperstreamOption Default => new() { Host = "" };
}
2 changes: 1 addition & 1 deletion src/Superstream/Utils/Constants.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ internal static class Subjects

internal static class SdkInfo
{
public const string SdkVersion = "1.0.1";
public const string SdkVersion = "1.0.2";
public const string SdkLanguage = "C#";
}
2 changes: 1 addition & 1 deletion version-beta.conf
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.0.2-beta.1
1.0.3-beta.1
2 changes: 1 addition & 1 deletion version.conf
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.0.1
1.0.2

0 comments on commit 841c760

Please sign in to comment.