Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

A major version release update #181

Closed
wants to merge 8 commits into from
Closed
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
10 changes: 5 additions & 5 deletions .github/workflows/publish_preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ name: Publish Preview to NuGet
on:
push:
tags:
- "v[0-9]+.[0-9]+.[0-9]+-preview-[0-9]+"
- "v[0-9]+.[0-9]+.[0-9]+-alpha-[0-9]+"
- "v[0-9]+.[0-9]+.[0-9]+-beta-[0-9]+"
- "v[0-9]+.[0-9]+.[0-9]+-prerelease-[0-9]+"
- "v[0-9]+.[0-9]+.[0-9]+-rc-[0-9]+"
- 'v[0-9]+.[0-9]+.[0-9]+-preview-[0-9]+'
- 'v[0-9]+.[0-9]+.[0-9]+-alpha-[0-9]+'
- 'v[0-9]+.[0-9]+.[0-9]+-beta-[0-9]+'
- 'v[0-9]+.[0-9]+.[0-9]+-prerelease-[0-9]+'
- 'v[0-9]+.[0-9]+.[0-9]+-rc-[0-9]+'

jobs:
preview:
Expand Down
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.2.0-preview-7] - 2024-02-02

### Changed

- Upgraded Aerospike Client package to version 7.0.1

Preview for now for further testing of the new release from Aerospike to better understand changes.

## [1.1.0] - 2023-04-11

### Changed
Expand Down
4 changes: 2 additions & 2 deletions src/AeroSharp/AeroSharp.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<TargetFrameworks>net6.0;net7.0</TargetFrameworks>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Version>1.1.0</Version>
<Version>1.2.0</Version>
<Authors>Wayfair</Authors>
<Description>Wrapper around the .NET Aerospike client that provides a variety of methods for storing and retrieving data in Aerospike</Description>
<Copyright>Wayfair ©2023</Copyright>
Expand Down Expand Up @@ -32,7 +32,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Aerospike.Client" Version="6.0.1" />
<PackageReference Include="Aerospike.Client" Version="7.0.1" />
<PackageReference Include="FluentValidation" Version="11.6.0" />
<PackageReference Include="lz4net" Version="1.0.15.93" />
<PackageReference Include="MessagePack" Version="2.5.124" />
Expand Down
Loading