15 Commits

Author SHA1 Message Date
f480334eee release: version 0.11.5 🚀
Some checks failed
Upload Python Package / Create Release (push) Successful in 32s
SonarQube Scan / SonarQube Trigger (push) Failing after 34s
CI / tests_linux (9.0.X, ubuntu-latest) (push) Successful in 2m4s
Upload Python Package / deploy (push) Failing after 1m55s
2025-10-26 21:24:02 +01:00
8608e4ddd1 fix: fix default push NuGet source, refs NOISSUE 2025-10-26 21:24:00 +01:00
7133ec1560 release: version 0.11.4 🚀
Some checks failed
Upload Python Package / Create Release (push) Successful in 1m2s
SonarQube Scan / SonarQube Trigger (push) Failing after 1m5s
CI / tests_linux (9.0.X, ubuntu-latest) (push) Successful in 1m26s
Upload Python Package / deploy (push) Failing after 1m28s
2025-10-26 21:19:52 +01:00
2f92f59a50 fix: set default push NuGet source, refs NOISSUE 2025-10-26 21:19:50 +01:00
97a4da7531 release: version 0.11.3 🚀
Some checks failed
Upload Python Package / Create Release (push) Successful in 45s
SonarQube Scan / SonarQube Trigger (push) Failing after 1m7s
CI / tests_linux (9.0.X, ubuntu-latest) (push) Successful in 1m54s
Upload Python Package / deploy (push) Failing after 1m19s
2025-10-26 21:16:00 +01:00
c577f15f91 fix: reenable all NuGet sources, refs NOISSUE 2025-10-26 21:15:58 +01:00
b4d55ddfc0 release: version 0.11.2 🚀
Some checks failed
Upload Python Package / Create Release (push) Successful in 37s
SonarQube Scan / SonarQube Trigger (push) Failing after 1m8s
CI / tests_linux (9.0.X, ubuntu-latest) (push) Successful in 2m7s
Upload Python Package / deploy (push) Failing after 1m42s
2025-10-26 21:02:58 +01:00
f51aad91fa fix: even more debug output during releases, refs NOISSUE 2025-10-26 21:02:55 +01:00
cab7ac35ae release: version 0.11.1 🚀
Some checks failed
Upload Python Package / Create Release (push) Successful in 14s
SonarQube Scan / SonarQube Trigger (push) Failing after 1m18s
CI / tests_linux (9.0.X, ubuntu-latest) (push) Successful in 2m1s
Upload Python Package / deploy (push) Failing after 2m3s
2025-10-26 20:58:57 +01:00
86bb120e32 fix: more debug output during releases, refs NOISSUE 2025-10-26 20:58:53 +01:00
c728509978 ci: reenable one of the NuGet sources, refs NOISSUE
Some checks failed
SonarQube Scan / SonarQube Trigger (push) Failing after 1m4s
CI / tests_linux (9.0.X, ubuntu-latest) (push) Successful in 1m19s
2025-10-26 20:41:37 +01:00
7bd2429a43 release: version 0.11.0 🚀
Some checks failed
SonarQube Scan / SonarQube Trigger (push) Failing after 49s
Upload Python Package / Create Release (push) Successful in 28s
CI / tests_linux (9.0.X, ubuntu-latest) (push) Successful in 1m24s
Upload Python Package / deploy (push) Failing after 4m44s
2025-10-26 20:31:48 +01:00
d41d9f1791 Revert "feat: add two dimensional data walker, refs: NOISSUE"
Some checks failed
SonarQube Scan / SonarQube Trigger (push) Failing after 28s
CI / tests_linux (9.0.X, ubuntu-latest) (push) Successful in 1m16s
This reverts commit 414c74be84.
2025-10-26 19:16:29 +01:00
1a8a82c106 ci: disable nuget feeds for now, refs NOISSUE
Some checks failed
SonarQube Scan / SonarQube Trigger (push) Failing after 34s
CI / tests_linux (9.0.X, ubuntu-latest) (push) Failing after 1m11s
2025-10-26 19:12:13 +01:00
414c74be84 feat: add two dimensional data walker, refs: NOISSUE
Some checks failed
SonarQube Scan / SonarQube Trigger (push) Failing after 25s
CI / tests_linux (9.0.X, ubuntu-latest) (push) Failing after 4m2s
2025-10-26 19:07:37 +01:00
4 changed files with 75 additions and 1 deletions

View File

@@ -59,10 +59,14 @@ jobs:
REPOSITORY_NAME=$(echo "$GITHUB_REPOSITORY" | awk -F '/' '{print $2}' | tr '-' '_')
REPOSITORY_SOURCE_NAME=gitea-repo
if [ -z "$(dotnet nuget config get all | grep "/packages/${REPOSITORY_OWNER}/nuget/index.json")" ]; then
echo "source repo not configured yet"
dotnet nuget add source --name $REPOSITORY_SOURCE_NAME https://git.disi.dev/api/packages/$REPOSITORY_OWNER/nuget/index.json
else
echo "Picking correct source repo"
QUOTED_REPOSITORY_SOURCE_NAME=$(dotnet nuget config get all | grep "/packages/${REPOSITORY_OWNER}/nuget/index.json" | awk '{print $2}' | awk -F= '{print $2}')
REPOSITORY_SOURCE_NAME=${QUOTED_REPOSITORY_SOURCE_NAME:1:-1}
echo "chosen repo is $REPOSITORY_SOURCE_NAME"
fi
dotnet pack --include-symbols --include-source -p:PackageVersion=$(cat $REPOSITORY_NAME/VERSION) TextParser.sln
echo "dotnet nuget push -k <GITEA_PAT> --source $REPOSITORY_SOURCE_NAME $REPOSITORY_NAME/bin/Release/$REPOSITORY_NAME.$(cat $REPOSITORY_NAME/VERSION).symbols.nupkg"
dotnet nuget push -k $GITEA_PAT --source $REPOSITORY_SOURCE_NAME $REPOSITORY_NAME/bin/Release/$REPOSITORY_NAME.$(cat $REPOSITORY_NAME/VERSION).symbols.nupkg

View File

@@ -4,6 +4,72 @@ Changelog
(unreleased)
------------
Fix
~~~
- Fix default push NuGet source, refs NOISSUE. [Simon Diesenreiter]
0.11.4 (2025-10-26)
-------------------
Fix
~~~
- Set default push NuGet source, refs NOISSUE. [Simon Diesenreiter]
Other
~~~~~
0.11.3 (2025-10-26)
-------------------
Fix
~~~
- Reenable all NuGet sources, refs NOISSUE. [Simon Diesenreiter]
Other
~~~~~
0.11.2 (2025-10-26)
-------------------
Fix
~~~
- Even more debug output during releases, refs NOISSUE. [Simon
Diesenreiter]
Other
~~~~~
0.11.1 (2025-10-26)
-------------------
Fix
~~~
- More debug output during releases, refs NOISSUE. [Simon Diesenreiter]
Other
~~~~~
- Ci: reenable one of the NuGet sources, refs NOISSUE. [Simon
Diesenreiter]
0.11.0 (2025-10-26)
-------------------
- Revert "feat: add two dimensional data walker, refs: NOISSUE" [Simon
Diesenreiter]
This reverts commit 414c74be84aecd3aff2f7abbb6cab88f50034d84.
- Ci: disable nuget feeds for now, refs NOISSUE. [Simon Diesenreiter]
- Feat: add two dimensional data walker, refs: NOISSUE. [Simon
Diesenreiter]
0.10.0 (2024-12-13)
-------------------
- Feat: add support for custom token types and longs, ref: NOISSUE.
[Simon Diesenreiter]

View File

@@ -1 +1 @@
0.10.0
0.11.5

View File

@@ -8,4 +8,8 @@
<add key="gitea-homelab" value="https://git.disi.dev/api/packages/Homelab/nuget/index.json" />
<add key="gitea-artifacts" value="https://git.disi.dev/api/packages/Artifacts/nuget/index.json" />
</packageSources>
<config>
<add key="DefaultPushSource" value="https://git.disi.dev/api/packages/Projects/nuget/index.json" />
</config>
</configuration>