Skip to content

Commit

Permalink
update to v15 release packages
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinJump committed Nov 13, 2024
1 parent bea2325 commit 463ccdf
Show file tree
Hide file tree
Showing 21 changed files with 2,381 additions and 2,378 deletions.
3 changes: 2 additions & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@
11.0 : Umbraco v11 release
12.0 : Umbraco v12 release
13.o : Umbraco v13 release
14.0 : Umbraco v14 release]]>
14.0 : Umbraco v14 release
15.0 : Umbraco v15 release]]>
</PackageReleaseNotes>

<EmbedUntrackedSources>true</EmbedUntrackedSources>
Expand Down
190 changes: 95 additions & 95 deletions uSync.AutoTemplates/packages.lock.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion uSync.AutoTemplates/uSync.AutoTemplates.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Umbraco.Cms.Core" Version="15.0.0-rc4" />
<PackageReference Include="Umbraco.Cms.Core" Version="15.0.0" />
</ItemGroup>


Expand Down
2 changes: 1 addition & 1 deletion uSync.BackOffice/Services/SyncService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -384,7 +384,7 @@ private async Task WriteVersionFileAsync(string folder)
{
var versionFile = Path.Combine(_syncFileService.GetAbsPath(folder), $"usync.{_uSyncConfig.Settings.DefaultExtension}");
var versionNode = new XElement("uSync",
new XAttribute("version", typeof(uSync).Assembly.GetName()?.Version?.ToString() ?? "14.0.0"),
new XAttribute("version", typeof(uSync).Assembly.GetName()?.Version?.ToString() ?? "15.0.0"),
new XAttribute("format", Core.uSyncConstants.FormatVersion));
// remove date, we don't really care, and it causes unnecessary git changes.

Expand Down
758 changes: 379 additions & 379 deletions uSync.BackOffice/packages.lock.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion uSync.BackOffice/uSyncBackOffice.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ namespace uSync.BackOffice;
/// </summary>
public class uSync
{
internal static Version Version => typeof(uSync).Assembly.GetName().Version ?? new Version(1, 0, 0);
internal static Version Version => typeof(uSync).Assembly.GetName().Version ?? new Version(15, 0, 0);

/// <summary>
/// name of the app
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,12 @@ private string GetuSyncVersion()
try
{
var fileVersionInfo = FileVersionInfo.GetVersionInfo(assembly.GetAssemblyFile().FullName);
var productVersion = SemVersion.Parse(fileVersionInfo.ProductVersion ?? assembly.GetName()?.Version?.ToString(3) ?? "14.2.0");
var productVersion = SemVersion.Parse(fileVersionInfo.ProductVersion ?? assembly.GetName()?.Version?.ToString(3) ?? "15.0.0");
return productVersion.ToSemanticStringWithoutBuild();
}
catch
{
return assembly.GetName()?.Version?.ToString(3) ?? "14.0.0";
return assembly.GetName()?.Version?.ToString(3) ?? "15.0.0";
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Umbraco.Cms.Api.Management" Version="15.0.0-rc4" />
<PackageReference Include="Umbraco.Cms.Api.Management" Version="15.0.0" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Umbraco.Cms.Infrastructure" Version="15.0.0-rc4" />
<PackageReference Include="Umbraco.Cms.Infrastructure" Version="15.0.0" />
</ItemGroup>

<!--
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@jumoo/usync",
"license": "MPL-2.0",
"type": "module",
"version": "15.0.0-rc3.20241113.1",
"version": "15.0.0-rc3.20241113.4",
"main": "./dist/usync.js",
"types": "./dist/index.d.ts",
"module": "./dist/usync.js",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,8 @@ export class uSyncDefaultViewElement extends UmbLitElement {
}

#renderActions() {
if (!this._actions || !Array.isArray(this._actions)) return nothing;

var actions = this._actions?.map((group) => {
return html`
<usync-action-box
Expand Down
758 changes: 379 additions & 379 deletions uSync.Community.Contrib/packages.lock.json

Large diffs are not rendered by default.

764 changes: 382 additions & 382 deletions uSync.Community.DataTypeSerializers/packages.lock.json

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Umbraco.Cms.Web.Website" Version="15.0.0-rc4" />
<PackageReference Include="Umbraco.Cms.Core" Version="15.0.0-rc4" />
<PackageReference Include="Umbraco.Cms.Web.Website" Version="15.0.0" />
<PackageReference Include="Umbraco.Cms.Core" Version="15.0.0" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All" />
</ItemGroup>

Expand Down
Loading

0 comments on commit 463ccdf

Please sign in to comment.