Skip to content

Commit

Permalink
Merge pull request #9 from TechNinjaLabs/release/3.0.0
Browse files Browse the repository at this point in the history
- release v3.0.0 ie. upgrade to .Net 8.0
  • Loading branch information
NinjaRocks authored Apr 6, 2024
2 parents 05ae79c + cce4b45 commit e0235fb
Show file tree
Hide file tree
Showing 7 changed files with 25 additions and 23 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/CI-Build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,8 @@ jobs:
${{ startsWith(github.head_ref, 'release/') }}
runs-on: ubuntu-latest
env:
nuget-token: '${{ secrets.NUGET_API_KEY }}'
nuget-token: '${{ secrets.NUGET_API_KEY }}'
github-token: '${{ secrets.GH_Packages }}'
working-directory: /home/runner/work/Secure.SAML/Secure.SAML
steps:
- name: Step-01 Retrieve Build Artifacts
Expand All @@ -167,7 +168,7 @@ jobs:
curl \
-X POST \
-H "Accept:application/vnd.github+json" \
-H "Authorization:token ${{ secrets.GITHUB_TOKEN }}" \
-H "Authorization:token ${{ env.github-token }}" \
https://api.github.com/ninjarocks/Secure.SAML/releases \
-d '{"tag_name":v${{ needs.Package-Artifacts.outputs.semVersion }},"target_commitish":"master","name":"Secure.SAML","body":"Relese version ${{ needs.Package.outputs.semVersion }}","draft":false,"prerelease":false,"generate_release_notes":false}'
Expand Down
2 changes: 1 addition & 1 deletion GitVersion.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
next-version: 2.0.0
next-version: 3.0.0
tag-prefix: '[vV]'
mode: ContinuousDeployment
branches:
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2023 Ninja Sha!4h
Copyright (c) 2024 Tech Ninja Labs

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# <img src="https://github.com/NinjaRocks/Secure.SAML/blob/master/ninja-icon-16.png" alt="ninja" style="width:30px;"/> Secure.SAML v2.0.0
# <img src="https://github.com/NinjaRocks/Secure.SAML/blob/master/ninja-icon-16.png" alt="ninja" style="width:30px;"/> Secure.SAML v3.0.0
[![NuGet version](https://badge.fury.io/nu/Secure.SAML.svg)](https://badge.fury.io/nu/Secure.SAML) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://github.com/NinjaRocks/Secure.SAML/blob/master/License.md) [![CI](https://github.com/NinjaRocks/Secure.SAML/actions/workflows/CI-Build.yml/badge.svg)](https://github.com/NinjaRocks/Secure.SAML/actions/workflows/CI-Build.yml) [![GitHub Release](https://img.shields.io/github/v/release/ninjarocks/Secure.SAML?logo=github&sort=semver)](https://github.com/ninjarocks/Secure.SAML/releases/latest)
[![CodeQL](https://github.com/NinjaRocks/Secure.SAML/actions/workflows/codeql.yml/badge.svg)](https://github.com/NinjaRocks/Secure.SAML/actions/workflows/codeql.yml) [![.Net 6.0](https://img.shields.io/badge/.Net%206.0-blue)](https://dotnet.microsoft.com/en-us/download/dotnet/6)
[![CodeQL](https://github.com/NinjaRocks/Secure.SAML/actions/workflows/codeql.yml/badge.svg)](https://github.com/NinjaRocks/Secure.SAML/actions/workflows/codeql.yml) [![.Net](https://img.shields.io/badge/.Net-8.0-blue)](https://dotnet.microsoft.com/en-us/download/dotnet/8)

.Net library to generate signed SAML 2.0 Response for parameters below-

Expand Down
12 changes: 6 additions & 6 deletions src/Secure.SAML/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@
using System;
using System.Reflection;

[assembly: System.Reflection.AssemblyCompanyAttribute("Ninja.Sha!4H")]
[assembly: System.Reflection.AssemblyCompanyAttribute("Tech Ninja Labs")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")]
[assembly: System.Reflection.AssemblyCopyrightAttribute("2023")]
[assembly: System.Reflection.AssemblyCopyrightAttribute("2024")]
[assembly: System.Reflection.AssemblyDescriptionAttribute(".Net library to generate signed SAML 2.0 Response.")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.5")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.5")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("3.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("3.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("Secure.SAML")]
[assembly: System.Reflection.AssemblyTitleAttribute("Secure.SAML")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.5")]
[assembly: System.Reflection.AssemblyMetadataAttribute("RepositoryUrl", "https://github.com/NinjaRocks/Secure.SAML")]
[assembly: System.Reflection.AssemblyVersionAttribute("3.0.0")]
[assembly: System.Reflection.AssemblyMetadataAttribute("RepositoryUrl", "https://github.com/TechNinjaLabs/Secure.SAML")]
// Generated by the MSBuild WriteCodeFragment class.

21 changes: 11 additions & 10 deletions src/Secure.SAML/Secure.SAML.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<OutputType>Library</OutputType>
<ImplicitUsings>disable</ImplicitUsings>
<Nullable>disable</Nullable>
Expand All @@ -11,27 +11,28 @@
<PackRelease>true</PackRelease>
<IsPackable>true</IsPackable>
<AssemblyTitle>Secure.SAML</AssemblyTitle>
<RepositoryUrl>https://github.com/ninjarocks/Secure.SAML</RepositoryUrl>
<RepositoryUrl>https://github.com/techninjalabs/Secure.SAML</RepositoryUrl>
<Product>Secure.SAML</Product>
<Copyright>© Copyright 2023 Ninja Sha!4h.</Copyright>
<Company>NinjaCorp Ltd.</Company>
<RepositoryUrl>https://github.com/ninjarocks/Secure.SAML</RepositoryUrl>
<Copyright>© Copyright 2024 Tech Ninja Labs.</Copyright>
<Authors>Tech Ninja Labs</Authors>
<Company>Tech Ninja Labs</Company>
<RepositoryUrl>https://github.com/techninjalabs/Secure.SAML</RepositoryUrl>
<Title>Secure.SAML</Title>
<PackageProjectUrl></PackageProjectUrl>
<Description>.Net library to generate signed SAML 2.0 Response.</Description>
<PackageTags>SAML; SAML Response; SHA1 SAML; SHA256 SAML; SHA512 SAML; SAML Assertion;</PackageTags>
<AssemblyVersion>1.0.5</AssemblyVersion>
<Version>2.0.0</Version>
<AssemblyVersion>3.0.0</AssemblyVersion>
<Version>3.0.0</Version>
<PackageIcon>ninja-icon-16.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryType>GIT</RepositoryType>
<PackageReleaseNotes>Release Notes:
.Net utility to create SAML 2.0 Response
<PackageReleaseNotes>v3.0.0 Release Notes: .net 8.0
.Net utility to create Signed SAML 2.0 Response
* Supported Signing Algorithms - SHA1, SHA256, SHA512
* Signs Assertion or Response.
* Outputs Base64 string or XMLDocument.</PackageReleaseNotes>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<FileVersion>2.0.0</FileVersion>
<FileVersion>3.0.0</FileVersion>
<PackAsTool>False</PackAsTool>
</PropertyGroup>

Expand Down
2 changes: 1 addition & 1 deletion tests/Secure.SAML.Tests/Secure.SAML.Tests.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>disable</ImplicitUsings>
<Nullable>disable</Nullable>
<IsPackable>false</IsPackable>
Expand Down

0 comments on commit e0235fb

Please sign in to comment.