Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.0.0
1.0.1
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Change Log

## [1.0.1](https://github.com/auth0/aspnetcore-api/tree/1.0.1) (2026-07-23)
[Full Changelog](https://github.com/auth0/aspnetcore-api/compare/1.0.0...1.0.1)

**Security**
- Bumps `Microsoft.AspNetCore.Authentication.JwtBearer` from 8.0.27 to 8.0.29 [\#87](https://github.com/auth0/aspnetcore-api/pull/87) ([kailash-b](https://github.com/kailash-b))

## [1.0.0](https://github.com/auth0/aspnetcore-api/tree/1.0.0) (2026-06-29)

First **general availability (GA)** release of `Auth0.AspNetCore.Authentication.Api` — a production-ready library for securing ASP.NET Core APIs with Auth0-issued tokens. It provides everything the standard `Microsoft.AspNetCore.Authentication.JwtBearer` package offers, with first-class Auth0 configuration, built-in DPoP, and Multiple Custom Domains support, in a single dependency.
Expand Down
4 changes: 2 additions & 2 deletions build/common.props
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
</PropertyGroup>
<PropertyGroup>
<LangVersion>latest</LangVersion>
<Version>1.0.0</Version>
<AssemblyVersionNumber>1.0.0</AssemblyVersionNumber>
<Version>1.0.1</Version>
<AssemblyVersionNumber>1.0.1</AssemblyVersionNumber>
</PropertyGroup>
<PropertyGroup>
<AssemblyVersion>$(AssemblyVersionNumber)</AssemblyVersion>
Expand Down
2 changes: 1 addition & 1 deletion src/Auth0.AspNetCore.Authentication.Api/Version.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ namespace Auth0.AspNetCore.Authentication.Api;

internal static class Version
{
public const string Current = "1.0.0";
public const string Current = "1.0.1";
}
Loading