Skip to content

Commit 92aadd9

Browse files
release: 0.1.0
1 parent 00653bc commit 92aadd9

File tree

3 files changed

+20
-11
lines changed

3 files changed

+20
-11
lines changed

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.0.1"
2+
".": "0.1.0"
33
}

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# Changelog
2+
3+
## 0.1.0 (2025-08-12)
4+
5+
Full Changelog: [v0.0.1...v0.1.0](https://github.com/ScrapeGraphAI/scrapegraphai-c/compare/v0.0.1...v0.1.0)
6+
7+
### Features
8+
9+
* add files ([d02f336](https://github.com/ScrapeGraphAI/scrapegraphai-c/commit/d02f3362c13702753d986b0d0c35a753e3d28136))
10+
11+
12+
### Chores
13+
14+
* configure new SDK language ([f87e130](https://github.com/ScrapeGraphAI/scrapegraphai-c/commit/f87e1302fbf8f0911a99c6ac94b704df8952798b))
15+
* update SDK settings ([00653bc](https://github.com/ScrapeGraphAI/scrapegraphai-c/commit/00653bcbabf976cabc53a46e0ad4c6045f559509))

src/Scrapegraphai/Scrapegraphai.csproj

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<AssemblyTitle>SDK Code Generation Scrapegraphai C#</AssemblyTitle>
77
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
88
<Nullable>enable</Nullable>
9-
<VersionPrefix>0.0.1</VersionPrefix>
9+
<VersionPrefix>0.1.0</VersionPrefix>
1010
<TargetFrameworks>net8.0</TargetFrameworks>
1111
<LangVersion>latest</LangVersion>
1212
<!-- Generate an XML documentation file for the project. -->
@@ -22,17 +22,11 @@
2222
<!-- Disable JSON warnings (alpha) -->
2323
<NoWarn>$(NoWarn),IL2026,IL3050</NoWarn>
2424
<Configurations>Debug;Release</Configurations>
25-
<IsTrimmable
26-
Condition="$([MSBuild]::IsTargetFrameworkCompatible('$(TargetFramework)', 'net6.0'))"
27-
>true</IsTrimmable
28-
>
29-
<IsAotCompatible
30-
Condition="$([MSBuild]::IsTargetFrameworkCompatible('$(TargetFramework)', 'net7.0'))"
31-
>true</IsAotCompatible
32-
>
25+
<IsTrimmable Condition="$([MSBuild]::IsTargetFrameworkCompatible('$(TargetFramework)', 'net6.0'))">true</IsTrimmable>
26+
<IsAotCompatible Condition="$([MSBuild]::IsTargetFrameworkCompatible('$(TargetFramework)', 'net7.0'))">true</IsAotCompatible>
3327
<ImplicitUsings>disable</ImplicitUsings>
3428
</PropertyGroup>
3529
<ItemGroup>
36-
<None Include="..\..\README.md" Pack="true" PackagePath="\" />
30+
<None Include="..\..\README.md" Pack="true" PackagePath="\"/>
3731
</ItemGroup>
3832
</Project>

0 commit comments

Comments
 (0)