Skip to content

Commit

Permalink
Update version to 3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Maxhy committed May 28, 2024
1 parent 7caed49 commit 64676eb
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion GitVersion.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
mode: ContinuousDelivery
next-version: 3.1.0
next-version: 3.2.0
branches:
master:
regex: (origin\/)?master
Expand Down
2 changes: 1 addition & 1 deletion installer/LibLogicalAccess.Msm/MergeModule.wxs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<?include config.wxi ?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
<Module Id="LibLogicalAccess.Msm" Language="1033" Version="3.1.0.0">
<Module Id="LibLogicalAccess.Msm" Language="1033" Version="3.2.0.0">
<Package Id="e75b8ac8-6ed3-4601-bfc3-30c46564c0c7" Manufacturer="$(var.Manufacturer)" InstallerVersion="200" />
<Directory Id="TARGETDIR" Name="SourceDir">
<Directory Id="MergeRedirectFolder">
Expand Down
2 changes: 1 addition & 1 deletion installer/LibLogicalAccess.Setup/Product.wxs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<?include config.wxi ?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
<Product Id="*" Name="$(var.ProductName)" Language="1033" Version="3.1.0.0" Manufacturer="$(var.Manufacturer)" UpgradeCode="9b055bc0-f36a-4bfc-a711-73b405cceac3">
<Product Id="*" Name="$(var.ProductName)" Language="1033" Version="3.2.0.0" Manufacturer="$(var.Manufacturer)" UpgradeCode="9b055bc0-f36a-4bfc-a711-73b405cceac3">
<Package InstallerVersion="200" Compressed="yes" InstallScope="perMachine" />

<MajorUpgrade DowngradeErrorMessage="A newer version of [ProductName] is already installed." />
Expand Down
2 changes: 1 addition & 1 deletion installer/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

class LogicalAccessSwigConan(ConanFile):
name = "LogicalAccessSwig"
version = "3.1.0"
version = "3.2.0"
settings = "build_type", "arch", "os"
options = { 'LLA_BUILD_NFC': [True, False],
'LLA_BUILD_UNITTEST': [True, False]}
Expand Down
2 changes: 1 addition & 1 deletion sources/LibLogicalAccessNet.native/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

class LLASwig(ConanFile):
name = "LogicalAccessSwig"
version = "3.1.0"
version = "3.2.0"
license = "LGPL"
url = "https://github.com/liblogicalaccess/liblogicalaccess-swig"
description = "SWIG wrapper for LibLogicalAccess"
Expand Down
8 changes: 4 additions & 4 deletions sources/LibLogicalAccessNet/LibLogicalAccessNet.csproj
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0</TargetFrameworks>
<AssemblyName>LibLogicalAccessNet$(ASSEMBLYAPPENDER)</AssemblyName>
<AssemblyName>LibLogicalAccessNetCE</AssemblyName>
<RootNamespace>LibLogicalAccess</RootNamespace>
<Description>LibLogicalAccess RFID library layer for C#</Description>
<Copyright>Copyright (C) LibLogicalAccess 2024</Copyright>
<Version>3.1.0</Version>
<AssemblyVersion>3.1.0.0</AssemblyVersion>
<FileVersion>3.1.0.0</FileVersion>
<Version>3.2.0</Version>
<AssemblyVersion>3.2.0.0</AssemblyVersion>
<FileVersion>3.2.0.0</FileVersion>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<Company>LibLogicalAccess</Company>
<Authors>LibLogicalAccess</Authors>
Expand Down

0 comments on commit 64676eb

Please sign in to comment.