Skip to content

Commit 7190608

Browse files
authored
Merge pull request #5 from TechNinjaLabs/release/3.0.0
- release v3.0.0 ie. update to .net 8.0
2 parents b64667f + 3e60a33 commit 7190608

File tree

6 files changed

+16
-16
lines changed

6 files changed

+16
-16
lines changed

.github/workflows/CI-Build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
Run-Lint:
1111
runs-on: ubuntu-latest
1212
env:
13-
github-token: '${{ secrets.GITHUB_TOKEN }}'
13+
github-token: '${{ secrets.GH_Packages }}'
1414
steps:
1515
- name: Step-01 Checkout code
1616
uses: actions/checkout@v3
@@ -101,7 +101,7 @@ jobs:
101101
- name: Step-04 Install .NET
102102
uses: actions/setup-dotnet@v3
103103
with:
104-
dotnet-version: 6.0.x
104+
dotnet-version: 8.0.x
105105

106106
- name: Step-05 Restore dependencies
107107
run: dotnet restore
@@ -131,7 +131,7 @@ jobs:
131131
outputs:
132132
semVersion: ${{ needs.Build-Release.outputs.semVersion }}
133133
env:
134-
github-token: '${{ secrets.GITHUB_TOKEN }}'
134+
github-token: '${{ secrets.GH_Packages }}'
135135
nuget-token: '${{ secrets.NUGET_API_KEY }}'
136136
working-directory: /home/runner/work/FileUtil.Core/FileUtil.Core
137137
steps:
@@ -154,7 +154,7 @@ jobs:
154154
-X POST \
155155
-H "Accept:application/vnd.github+json" \
156156
-H "Authorization:token ${{ env.github-token }}" \
157-
https://api.github.com/ninjarocks/FileUtil.Core/releases \
157+
https://api.github.com/techninjalabs/FileUtil.Core/releases \
158158
-d '{"tag_name":v1.0.0,"target_commitish":"master","name":"FileUtil.Core","body":"","draft":false,"prerelease":false,"generate_release_notes":false}'
159159
160160
- name: Step-03 Release to Nuget Org

GitVersion.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
next-version: 2.0.0
1+
next-version: 3.0.0
22
tag-prefix: '[vV]'
33
mode: ContinuousDeployment
44
branches:

License.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2016 Ninja Sha!4H
3+
Copyright (c) 2024 Tech Ninja Labs
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# <img src="https://github.com/NinjaRocks/FileUtil.Core/blob/master/ninja-icon-16.png" alt="ninja" style="width:30px;"/> FileUtil v2.0.0
1+
# <img src="https://github.com/NinjaRocks/FileUtil.Core/blob/master/ninja-icon-16.png" alt="ninja" style="width:30px;"/> FileUtil v3.0.0
22
[![NuGet version](https://badge.fury.io/nu/FixedWidth.FileParser.svg)](https://badge.fury.io/nu/FixedWidth.FileParser) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://github.com/NinjaRocks/FileUtil.Core/blob/master/License.md) [![CI](https://github.com/NinjaRocks/FileUtil.Core/actions/workflows/CI-Build.yml/badge.svg)](https://github.com/NinjaRocks/FileUtil.Core/actions/workflows/CI-Build.yml) [![GitHub Release](https://img.shields.io/github/v/release/ninjarocks/FileUtil.Core?logo=github&sort=semver)](https://github.com/ninjarocks/FileUtil.Core/releases/latest)
3-
[![CodeQL](https://github.com/NinjaRocks/FileUtil.Core/actions/workflows/codeql.yml/badge.svg)](https://github.com/NinjaRocks/FileUtil.Core/actions/workflows/codeql.yml) [![.Net](https://img.shields.io/badge/.Net%20-6.0-blue)](https://dotnet.microsoft.com/en-us/download/dotnet/6)
3+
[![CodeQL](https://github.com/NinjaRocks/FileUtil.Core/actions/workflows/codeql.yml/badge.svg)](https://github.com/NinjaRocks/FileUtil.Core/actions/workflows/codeql.yml) [![.Net](https://img.shields.io/badge/.Net%20-8.0-blue)](https://dotnet.microsoft.com/en-us/download/dotnet/8)
44
-------------
55
#### .Net Library to read from fixed width or delimiter separated file using strongly typed objects.
66

src/Ninja.FileUtil/Ninja.FileUtil.csproj

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFramework>net6.0</TargetFramework>
3+
<TargetFramework>net8.0</TargetFramework>
44
<RepositoryType>Public</RepositoryType>
5-
<RepositoryUrl>https://github.com/NinjaRocks/FileUtil.Core</RepositoryUrl>
5+
<RepositoryUrl>https://github.com/TechNinjaLabs/FileUtil.Core</RepositoryUrl>
66
<PackageTags>csv tsv fixed-width delimiter-file delimiter file-parser file parser</PackageTags>
77
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
88
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
99
<Description>.Net Library to read from fixed width or delimiter separated file using strongly typed objects.
1010
Example: pipe delimited, csv, tsv, etc.</Description>
1111
<NeutralLanguage>en-GB</NeutralLanguage>
12-
<Company>Ninja Corp</Company>
13-
<Authors>Ninja Shayk</Authors>
12+
<Company>Tech Ninja Labs</Company>
13+
<Authors>Tech Ninja Labs</Authors>
1414
<PackageId>FixedWidth.FileParser</PackageId>
1515
<Product>Fixed Width File Parser</Product>
16-
<PackageProjectUrl>https://github.com/NinjaRocks/FileUtil.Core</PackageProjectUrl>
16+
<PackageProjectUrl>https://github.com/TechNinjaLabs/FileUtil.Core</PackageProjectUrl>
1717
<PackageIconUrl>https://1drv.ms/u/s!Aq_ncig7TU4551b5fzxOad-pDMfL</PackageIconUrl>
18-
<Version>2.0.0</Version>
18+
<Version>3.0.0</Version>
1919
<Title>FixedWidth.FileParser</Title>
20-
<Copyright>© Copyright 2016 Ninja Sha!4h.</Copyright>
20+
<Copyright>© Copyright 2024 Tech Ninja Labs.</Copyright>
2121
<PackageIcon>ninja-icon-16.png</PackageIcon>
2222
<PackageReadmeFile>README.md</PackageReadmeFile>
2323
<PackageLicenseFile>License.md</PackageLicenseFile>

test/Ninja.FileUtil.Tests/Ninja.FileUtil.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net6.0</TargetFramework>
4+
<TargetFramework>net8.0</TargetFramework>
55
<ImplicitUsings>enable</ImplicitUsings>
66
<Nullable>enable</Nullable>
77

0 commit comments

Comments
 (0)