Skip to content

Commit

Permalink
Release 2.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
javiertuya committed Dec 27, 2021
1 parent d729f90 commit c2a224f
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
uses: actions/setup-java@v2
with: # running setup-java again overwrites the settings.xml
distribution: 'temurin'
java-version: '11'
java-version: '8'
server-id: ossrh # Value of the distributionManagement/repository/id field of the pom.xml
server-username: MAVEN_USERNAME # env variable for username in deploy
server-password: MAVEN_CENTRAL_TOKEN # env variable for token in deploy
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Test visual-assert Java and .NET
name: Test Java and .NET
on: [push, pull_request]
jobs:
test-java:
Expand All @@ -14,8 +14,8 @@ jobs:
uses: actions/setup-java@v2
with:
distribution: 'temurin'
java-version: '11'
#cache: 'maven' (Now fails when loading the environment!!!)
java-version: '8'
cache: 'maven'

- name: Build and test
run: mvn test -Dmaven.test.failure.ignore=true -U --no-transfer-progress
Expand Down
2 changes: 1 addition & 1 deletion java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ WARNING: All illegal access operations will be denied in a future release
-->
<groupId>io.github.javiertuya</groupId>
<artifactId>visual-assert</artifactId>
<version>2.1.1</version>
<version>2.1.2</version>
<packaging>jar</packaging>
<organization>
<name>Software Engineering Research Group - University of Oviedo, ES</name>
Expand Down
4 changes: 2 additions & 2 deletions net/TestVisualAssert/TestVisualAssert.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.5.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.0.0" />
<PackageReference Include="NUnit" Version="3.13.2" />
<PackageReference Include="NUnit3TestAdapter" Version="3.17.0" />
<PackageReference Include="NUnit3TestAdapter" Version="4.1.0" />
</ItemGroup>

<ItemGroup>
Expand Down
4 changes: 2 additions & 2 deletions net/VisualAssert/VisualAssert.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
<PropertyGroup>
<OutputType>Library</OutputType>
<TargetFramework>netstandard2.0</TargetFramework>
<InformationalVersion>2.1.1</InformationalVersion>
<InformationalVersion>2.1.2</InformationalVersion>

<PackageOutputPath>./nupkg</PackageOutputPath>
<RepositoryUrl>https://github.com/$(GITHUB_REPOSITORY)</RepositoryUrl>
<Version>2.1.1</Version>
<Version>2.1.2</Version>
<Authors>Javier Tuya</Authors>
<Company>GIIS - University of Oviedo</Company>
<Description>
Expand Down

0 comments on commit c2a224f

Please sign in to comment.