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

Update messagepack version #188

Draft
wants to merge 5 commits into
base: main
Choose a base branch
from
Draft
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
4 changes: 2 additions & 2 deletions .github/workflows/publish_preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ jobs:
name: "Publish Preview"

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
name: Check Out Code
- name: Setup .NET
uses: actions/setup-dotnet@v3
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
6.0.x
Expand Down
6 changes: 3 additions & 3 deletions src/AeroSharp/AeroSharp.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
<PropertyGroup>
<TargetFrameworks>net6.0;net7.0</TargetFrameworks>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Version>1.1.1</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 ©2024</Copyright>
<Copyright>Wayfair ©2025</Copyright>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageProjectUrl>https://github.com/wayfair-incubator/AeroSharp</PackageProjectUrl>
<RepositoryUrl>https://github.com/wayfair-incubator/AeroSharp</RepositoryUrl>
Expand Down Expand Up @@ -35,7 +35,7 @@
<PackageReference Include="Aerospike.Client" Version="6.0.1" />
<PackageReference Include="FluentValidation" Version="11.6.0" />
<PackageReference Include="lz4net" Version="1.0.15.93" />
<PackageReference Include="MessagePack" Version="2.5.124" />
<PackageReference Include="MessagePack" Version="3.1.1" />
<PackageReference Include="Polly" Version="7.2.4" />
<PackageReference Include="protobuf-net" Version="3.2.26" />
<PackageReference Include="StyleCop.Analyzers" Version="1.1.118">
Expand Down
Loading