Skip to content

Commit db855f6

Browse files
committed
chore: 📝 builds, Docs, scripts corrections
1 parent ce1f8ce commit db855f6

11 files changed

Lines changed: 68 additions & 14 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
# Changelog
22

3+
## [v0.1.5](https://github.com/contentstack/contentstack-management-dotnet/tree/v0.1.5) (2024-02-11)
4+
- Adds JsonConverters to Serializer for JSON Rte
5+
36
## [v0.1.4](https://github.com/contentstack/contentstack-management-dotnet/tree/v0.1.4) (2024-01-22)
7+
- EarlyAccess Header support and AddQuery method in ParamCollection
48

59
## [v0.1.3](https://github.com/contentstack/contentstack-management-dotnet/tree/v0.1.3) (2023-04-04)
610

Contentstack.Management.ASPNETCore/LICENSE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright © 2012-2021 Contentstack. All Rights Reserved
3+
Copyright © 2012-2024 Contentstack. All Rights Reserved
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

Contentstack.Management.ASPNETCore/contentstack.management.aspnetcore.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
<PropertyGroup>
44
<TargetFramework>netstandard2.1</TargetFramework>
55
<PackageId>contentstack.management.aspnetcore</PackageId>
6-
<PackageVersion>0.1.4</PackageVersion>
6+
<PackageVersion>0.1.5</PackageVersion>
77
<Authors>Contentstack</Authors>
8-
<Copyright>Copyright © 2012-2023 Contentstack. All Rights Reserved</Copyright>
8+
<Copyright>Copyright © 2012-2024 Contentstack. All Rights Reserved</Copyright>
99
<Owners>Contentstack </Owners>
1010
<PackageProjectUrl>https://github.com/contentstack/contentstack-management-dotnet</PackageProjectUrl>
1111
<PackageReleaseNotes>Initial Release</PackageReleaseNotes>
@@ -14,8 +14,8 @@
1414
<Title>Contentstack Management</Title>
1515
<Description>.NET SDK for the Contentstack Content Management API.</Description>
1616
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
17-
<PackageTags>v0.1.4</PackageTags>
18-
<ReleaseVersion>0.1.4</ReleaseVersion>
17+
<PackageTags>v0.1.5</PackageTags>
18+
<ReleaseVersion>0.1.5</ReleaseVersion>
1919
<RootNamespace>Contentstack.Management.ASPNETCore</RootNamespace>
2020
</PropertyGroup>
2121

Contentstack.Management.Core.Tests/Contentstack.Management.Core.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<TargetFramework>net7.0</TargetFramework>
55

66
<IsPackable>false</IsPackable>
7-
<ReleaseVersion>0.1.4</ReleaseVersion>
7+
<ReleaseVersion>0.1.3</ReleaseVersion>
88
</PropertyGroup>
99

1010
<ItemGroup>

Contentstack.Management.Core.Unit.Tests/Contentstack.Management.Core.Unit.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<TargetFramework>net7.0</TargetFramework>
55

66
<IsPackable>false</IsPackable>
7-
<ReleaseVersion>0.1.4</ReleaseVersion>
7+
<ReleaseVersion>0.1.5</ReleaseVersion>
88
</PropertyGroup>
99

1010
<ItemGroup>
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio Version 16
4+
VisualStudioVersion = 25.0.1706.7
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Contentstack.Management.Core.Unit.Tests", "Contentstack.Management.Core.Unit.Tests.csproj", "{E538B868-3CEC-41D0-8D3F-F35D9A317BF8}"
7+
EndProject
8+
Global
9+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10+
Debug|Any CPU = Debug|Any CPU
11+
Release|Any CPU = Release|Any CPU
12+
EndGlobalSection
13+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
14+
{E538B868-3CEC-41D0-8D3F-F35D9A317BF8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15+
{E538B868-3CEC-41D0-8D3F-F35D9A317BF8}.Debug|Any CPU.Build.0 = Debug|Any CPU
16+
{E538B868-3CEC-41D0-8D3F-F35D9A317BF8}.Release|Any CPU.ActiveCfg = Release|Any CPU
17+
{E538B868-3CEC-41D0-8D3F-F35D9A317BF8}.Release|Any CPU.Build.0 = Release|Any CPU
18+
EndGlobalSection
19+
GlobalSection(SolutionProperties) = preSolution
20+
HideSolutionNode = FALSE
21+
EndGlobalSection
22+
GlobalSection(ExtensibilityGlobals) = postSolution
23+
SolutionGuid = {04680C0E-4E3F-4CD1-ABD4-33B468E70E84}
24+
EndGlobalSection
25+
EndGlobal

Contentstack.Management.Core/LICENSE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright © 2012-2021 Contentstack. All Rights Reserved
3+
Copyright © 2012-2024 Contentstack. All Rights Reserved
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

Contentstack.Management.Core/contentstack.management.core.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
<PropertyGroup>
44
<TargetFrameworks>netstandard2.0;net471;net472;</TargetFrameworks>
55
<PackageId>contentstack.management.csharp</PackageId>
6-
<PackageVersion>0.1.4</PackageVersion>
6+
<PackageVersion>0.1.5</PackageVersion>
77
<Authors>Contentstack</Authors>
8-
<Copyright>Copyright © 2012-2023 Contentstack. All Rights Reserved</Copyright>
8+
<Copyright>Copyright © 2012-2024 Contentstack. All Rights Reserved</Copyright>
99
<Owners>Contentstack </Owners>
1010
<PackageProjectUrl>https://github.com/contentstack/contentstack-management-dotnet</PackageProjectUrl>
1111
<PackageReleaseNotes>ContentType query issue resolved</PackageReleaseNotes>
@@ -14,8 +14,8 @@
1414
<Title>Contentstack Management</Title>
1515
<Description>.NET SDK for the Contentstack Content Management API.</Description>
1616
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
17-
<PackageTags>v0.1.4</PackageTags>
18-
<ReleaseVersion>0.1.4</ReleaseVersion>
17+
<PackageTags>v0.1.5</PackageTags>
18+
<ReleaseVersion>0.1.5</ReleaseVersion>
1919
</PropertyGroup>
2020

2121
<ItemGroup>
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio Version 16
4+
VisualStudioVersion = 25.0.1706.7
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "contentstack.management.core", "contentstack.management.core.csproj", "{AD3A42B8-9DE7-4B64-949B-AF227C2B2574}"
7+
EndProject
8+
Global
9+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10+
Debug|Any CPU = Debug|Any CPU
11+
Release|Any CPU = Release|Any CPU
12+
EndGlobalSection
13+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
14+
{AD3A42B8-9DE7-4B64-949B-AF227C2B2574}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15+
{AD3A42B8-9DE7-4B64-949B-AF227C2B2574}.Debug|Any CPU.Build.0 = Debug|Any CPU
16+
{AD3A42B8-9DE7-4B64-949B-AF227C2B2574}.Release|Any CPU.ActiveCfg = Release|Any CPU
17+
{AD3A42B8-9DE7-4B64-949B-AF227C2B2574}.Release|Any CPU.Build.0 = Release|Any CPU
18+
EndGlobalSection
19+
GlobalSection(SolutionProperties) = preSolution
20+
HideSolutionNode = FALSE
21+
EndGlobalSection
22+
GlobalSection(ExtensibilityGlobals) = postSolution
23+
SolutionGuid = {269234FD-4A69-4122-811D-5700BA3A4C8C}
24+
EndGlobalSection
25+
EndGlobal

Scripts/run-test-case.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# Contentstack
55
#
66
# Created by Uttam Ukkoji on 12/04/21.
7-
# Copyright © 2023 Contentstack. All rights reserved.
7+
# Copyright © 2024 Contentstack. All rights reserved.
88

99
echo "Removing files"
1010

0 commit comments

Comments
 (0)