Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
".": "0.0.2"
}
4 changes: 2 additions & 2 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
configured_endpoints: 32
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/dedalus-labs/dedalus-2dccfe89b18a8eeb1379dc7286bb65448973493b17fc1cc2af1f08ba674c216a.yml
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/dedalus-labs/dedalus-32ccb3c17674e0ee68fd6eafbdd0f210bccfd09fce0702e28b8278e06678deec.yml
openapi_spec_hash: ccb02923079d91569a17162c88da590b
config_hash: ca162ca77845038c30f4074f237ae257
config_hash: 3b16603a18779d453842a0d56638384d
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Changelog

## 0.0.2 (2026-05-15)

Full Changelog: [v0.0.1...v0.0.2](https://github.com/dedalus-labs/dedalus-csharp/compare/v0.0.1...v0.0.2)

### Chores

* configure new SDK language ([38d2cc8](https://github.com/dedalus-labs/dedalus-csharp/commit/38d2cc8cc0e7ab5dda183ace56da895a3894f9a7))
* update SDK settings ([87c2970](https://github.com/dedalus-labs/dedalus-csharp/commit/87c297052d61e758838eba229315fd137f4a5663))
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ The REST API documentation can be found on [docs.dedaluslabs.ai](https://docs.de
## Installation

```bash
git clone git@github.com:stainless-sdks/dedalus-csharp.git
git clone git@github.com:dedalus-labs/dedalus-csharp.git
dotnet add reference dedalus-csharp/src/Dedalus
```

Expand Down Expand Up @@ -430,4 +430,4 @@ This package generally follows [SemVer](https://semver.org/spec/v2.0.0.html) con

We take backwards-compatibility seriously and work hard to ensure you can rely on a smooth upgrade experience.

We are keen for your feedback; please open an [issue](https://www.github.com/stainless-sdks/dedalus-csharp/issues) with questions, bugs, or suggestions.
We are keen for your feedback; please open an [issue](https://www.github.com/dedalus-labs/dedalus-csharp/issues) with questions, bugs, or suggestions.
74 changes: 74 additions & 0 deletions release-please-config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
{
"packages": {
".": {}
},
"$schema": "https://raw.githubusercontent.com/stainless-api/release-please/main/schemas/config.json",
"include-v-in-tag": true,
"include-component-in-tag": false,
"versioning": "prerelease",
"prerelease": true,
"bump-minor-pre-major": true,
"bump-patch-for-minor-pre-major": false,
"pull-request-header": "Automated Release PR",
"pull-request-title-pattern": "release: ${version}",
"changelog-sections": [
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "perf",
"section": "Performance Improvements"
},
{
"type": "revert",
"section": "Reverts"
},
{
"type": "chore",
"section": "Chores"
},
{
"type": "docs",
"section": "Documentation"
},
{
"type": "style",
"section": "Styles"
},
{
"type": "refactor",
"section": "Refactors"
},
{
"type": "test",
"section": "Tests",
"hidden": true
},
{
"type": "build",
"section": "Build System"
},
{
"type": "ci",
"section": "Continuous Integration",
"hidden": true
}
],
"reviewers": [
"@windsornguyen"
],
"release-type": "simple",
"extra-files": [
{
"type": "xml",
"path": "**/*.csproj",
"xpath": "//Project/PropertyGroup/VersionPrefix",
"glob": true
}
]
}
14 changes: 7 additions & 7 deletions src/Dedalus/Dedalus.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,19 @@
<!-- Metadata -->
<AssemblyTitle>Dedalus C#</AssemblyTitle>
<AssemblyName>Dedalus</AssemblyName>
<VersionPrefix>0.0.1</VersionPrefix>
<VersionPrefix>0.0.2</VersionPrefix>
<Description>The official .NET library for the Dedalus API.</Description>
<OutputType>Library</OutputType>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
<ItemGroup>
<InternalsVisibleTo Include="Dedalus.Tests" />
<None Include="..\..\README.md" Pack="true" PackagePath="\" />
<PackageReference Include="System.Text.Json" Version="9.0.9" />
<PackageReference Include="System.Net.ServerSentEvents" Version="10.0.0" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All" />
<InternalsVisibleTo Include="Dedalus.Tests"/>
<None Include="..\..\README.md" Pack="true" PackagePath="\"/>
<PackageReference Include="System.Text.Json" Version="9.0.9"/>
<PackageReference Include="System.Net.ServerSentEvents" Version="10.0.0"/>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All"/>
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
<PackageReference Include="System.Collections.Immutable" Version="8.0.0" />
<PackageReference Include="System.Collections.Immutable" Version="8.0.0"/>
</ItemGroup>
</Project>
2 changes: 1 addition & 1 deletion src/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<Copyright>Copyright 2026 Dedalus</Copyright>
<PackageProjectUrl>https://docs.dedaluslabs.ai</PackageProjectUrl>
<RepositoryUrl>https://www.github.com/stainless-sdks/dedalus-csharp</RepositoryUrl>
<RepositoryUrl>https://www.github.com/dedalus-labs/dedalus-csharp</RepositoryUrl>
<RepositoryType>git</RepositoryType>

<!-- Documentation-->
Expand Down
Loading