Skip to content

Commit

Permalink
version 0.2.2
Browse files Browse the repository at this point in the history
removed AutoSyncProfile from profile list
  • Loading branch information
Legion2 committed May 13, 2020
1 parent 1e6a5c7 commit c8c49eb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
3 changes: 1 addition & 2 deletions open-cue-service.csproj
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk.Web">

<PropertyGroup>
<Title>Open CUE Service</Title>
<Version>0.2.1</Version>
<Version>0.2.2</Version>
<Authors>Legion2</Authors>
<Description>HTTP REST API service for Open CUE CLI</Description>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
Expand Down
1 change: 1 addition & 0 deletions src/ProfileManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ private IDictionary<string, int> loadPriorities()
throw new Exception("Bad priorities.cfg");
}
}
Priorities.Remove(Config.AutoSyncProfileName);
return Priorities;
}

Expand Down
2 changes: 1 addition & 1 deletion src/Startup.cs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public void ConfigureServices(IServiceCollection services)
document.DocumentName = "openapi";
document.Title = "Open CUE Service";
document.Description = "HTTP REST API service for Open CUE CLI";
document.Version = "0.2.1";
document.Version = "0.2.2";
});
}

Expand Down

0 comments on commit c8c49eb

Please sign in to comment.