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
12 changes: 8 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Changed
- Changed folder structure to match the TensionDev.ULID namespace.


## [v1.0.0] - 2026-02-11
[v1.0.0](https://github.com/TensionDev/ULIDUtil/releases/tag/v1.0.0)
[v1.0.0](https://github.com/TensionDev/ULID/releases/tag/v1.0.0)

### Added
- Added TryParse for character spans.
Expand All @@ -21,7 +25,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0


## [v0.2.0] - 2025-05-01
[v0.2.0](https://github.com/TensionDev/ULIDUtil/releases/tag/v0.2.0)
[v0.2.0](https://github.com/TensionDev/ULID/releases/tag/v0.2.0)

### Added
- Added DateTime Conversion from ULID.
Expand All @@ -32,14 +36,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0


## [v0.1.1] - 2025-02-02 [YANKED]
[v0.1.1](https://github.com/TensionDev/ULIDUtil/releases/tag/v0.1.1)
[v0.1.1](https://github.com/TensionDev/ULID/releases/tag/v0.1.1)

### Changed
- Changed Exception thrown message to a standardised string.


## [v0.1.0-alpha] - 2024-12-09
[v0.1.0-alpha](https://github.com/TensionDev/ULIDUtil/releases/tag/v0.1.0-alpha)
[v0.1.0-alpha](https://github.com/TensionDev/ULID/releases/tag/v0.1.0-alpha)

### Added
- Added ULID generated based on current system date and time.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
using System.Threading.Tasks;
using Xunit;

namespace XUnitTestProjectULID
namespace TensionDev.ULID.Tests
{
public class CrockfordBase32DecodeData : TheoryData<Char, UInt64>
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<TargetFrameworks>net8.0;net10.0</TargetFrameworks>
<ImplicitUsings>false</ImplicitUsings>
<Nullable>disable</Nullable>

Expand All @@ -23,7 +23,7 @@
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\ULIDUtil\ULIDUtil.csproj" />
<ProjectReference Include="..\TensionDev.ULID\TensionDev.ULID.csproj" />
</ItemGroup>

</Project>
Loading
Loading