Skip to content

Commit 707e6b0

Browse files
committed
Update changelogs, project setup
1 parent 44f424a commit 707e6b0

19 files changed

Lines changed: 87 additions & 3 deletions

File tree

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Fable.Remoting.OpenAPI
22

3-
OpenAPI generation for Fable.Remoting record-of-functions contracts.
3+
OpenAPI generation for Fable.Remoting contracts.
44

55
## Packages
66

@@ -16,6 +16,9 @@ OpenAPI generation for Fable.Remoting record-of-functions contracts.
1616
- Defaults docs routes from route builder and API type name.
1717
- Deterministic output suitable for snapshot-style tests.
1818

19+
> [!NOTE]
20+
> This project was instantiated by AI agents and was not fully reviewed by humans at the time of this commit. It was done to quickly deviler a working prototype of the intended functionality.
21+
1922
## Core Usage
2023

2124
```fsharp

app/src/Client/packages.lock.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"version": 1,
3+
"dependencies": {
4+
"net8.0": {}
5+
}
6+
}

app/src/Server/packages.lock.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"version": 1,
3+
"dependencies": {
4+
"net8.0": {}
5+
}
6+
}

app/src/Shared/packages.lock.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"version": 1,
3+
"dependencies": {
4+
"net8.0": {}
5+
}
6+
}
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"version": 1,
3+
"dependencies": {
4+
"net8.0": {}
5+
}
6+
}
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"version": 1,
3+
"dependencies": {
4+
"net8.0": {}
5+
}
6+
}
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"version": 1,
3+
"dependencies": {
4+
"net8.0": {}
5+
}
6+
}

global.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"sdk": {
3+
"version": "10.0.100",
4+
"rollForward": "latestFeature"
5+
}
6+
}

src/Fable.Remoting.OpenAPI.Giraffe/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to Semantic Versioning.
77

88
## [Unreleased]
99

10+
# 0.0.1 - 2026-03-16
11+
1012
### Added
1113

1214
- Dedicated Giraffe adapter package for docs and remoting composition.

src/Fable.Remoting.OpenAPI.Giraffe/Fable.Remoting.OpenAPI.Giraffe.fsproj

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
<TargetFramework>net8.0</TargetFramework>
55
<GenerateDocumentationFile>true</GenerateDocumentationFile>
66
<DisableImplicitFSharpCoreReference>true</DisableImplicitFSharpCoreReference>
7+
<PackageTags>fsharp;fable;remoting;rpc;webserver;giraffe;openapi</PackageTags>
8+
<Authors>Freymaurer</Authors>
79
</PropertyGroup>
810

911
<ItemGroup>

0 commit comments

Comments
 (0)