Skip to content

Commit 957ba32

Browse files
committed
fix(CI): build.fsx packaging declares source explicitly
1 parent 1d7c438 commit 957ba32

2 files changed

Lines changed: 6 additions & 25 deletions

File tree

build.fsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,8 @@ Target.create Ops.Publish (fun _ ->
190190
|> Seq.iter (
191191
DotNet.nugetPush (fun p ->
192192
{ p with
193-
DotNet.NuGetPushOptions.PushParams.ApiKey = apiKey })
193+
DotNet.NuGetPushOptions.PushParams.ApiKey = apiKey
194+
DotNet.NuGetPushOptions.PushParams.Source = Some "https://api.nuget.org/v3/index.json" })
194195
))
195196

196197
Target.create Ops.PublishLocal (fun _ ->

docs/RELEASE_NOTES.md

Lines changed: 4 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -5,29 +5,10 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
<h2>[Unreleased]</h2>
8+
## [1.1.6] - 2025-07-19
99

10-
<h3><!-- 1 -->Added</h3>
11-
- Add git-cliff changelog
12-
- ADD: RELEASE_NOTES.md
13-
- New Expecto test structure
14-
- ADD: build script
15-
16-
<h3><!-- 2 -->Removed</h3>
17-
- Remove scratchtest
18-
19-
<h3><!-- 3 -->Changed</h3>
20-
- Nicer CI output
21-
- Add tool restore to CI
22-
23-
<h3><!-- 5 -->Fixed</h3>
24-
- Do not compile from Compiled folder
25-
26-
<h3><!-- 9 -->Other</h3>
27-
- Bash on unix
28-
- Ignore scratchtests
29-
- Old test structure
30-
- Merge branch 'master' into develop
10+
<h3><!-- 0 -->Features</h3>
11+
- CI and Expecto Tests by @shayanhabibi in [#35](https://github.com/shayanhabibi/Partas.Solid/pull/35)
3112

3213

3314
## [1.1.5] - 2025-07-14
@@ -49,7 +30,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
4930

5031
<h3><!-- 5 -->Fixed</h3>
5132
- Fix #29: TypeCastDrill on Set expressions for Attributes. Fix FileRoutes to use emit macro to prevent fail on runtime. by @shayanhabibi in [#30](https://github.com/shayanhabibi/Partas.Solid/pull/30)
52-
- SolidStart FileRoutes binding to use emit macro to prevent compiling an invalid function call on runtime
5333
- Fix icon link by @shayanhabibi
5434

5535
<h3><!-- 9 -->Other</h3>
@@ -349,7 +329,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
349329
<h2>New Contributors</h2>
350330
* @shayanhabibi made their first contribution
351331

352-
[unreleased]: https://github.com/shayanhabibi/Partas.Solid/compare/v1.1.5..HEAD
332+
[1.1.6]: https://github.com/shayanhabibi/Partas.Solid/compare/v1.1.5..v1.1.6
353333
[1.1.5]: https://github.com/shayanhabibi/Partas.Solid/compare/1.1.5..v1.1.5
354334
[1.1.5]: https://github.com/shayanhabibi/Partas.Solid/compare/1.0.0..1.1.5
355335
[1.0.0]: https://github.com/shayanhabibi/Partas.Solid/compare/1.0.0-alpha4..1.0.0

0 commit comments

Comments
 (0)