Skip to content
This repository was archived by the owner on Feb 2, 2025. It is now read-only.

Commit df67913

Browse files
committed
Release 4.0.0-rc-1.0
1 parent 03fe837 commit df67913

File tree

3 files changed

+9
-8
lines changed

3 files changed

+9
-8
lines changed

.github/workflows/maven.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ on:
44
pull_request:
55
push:
66
tags:
7+
- '*'
78
branches:
89
- develop
910
- selenium4
@@ -62,7 +63,7 @@ jobs:
6263
run: |
6364
Get-ChildItem target/robotframework-reports -Include *output.xml -Recurse | Remove-Item
6465
echo "REPORT_FILE=$(Get-ChildItem target/robotframework-reports -Include *report.html -Recurse -Name)" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
65-
echo "SHA=$(("${{ github.event_name }}" -eq "push") ? "${{ github.sha }}" : "${{ github.event.pull_request.head.sha }}")" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
66+
echo "SHA=$(("${{ github.event_name }}" -eq "push") ? '${{ github.sha }}' : '${{ github.event.pull_request.head.sha }}')" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
6667
if: always() && runner.os == 'Windows'
6768

6869
- name: Delete output.xml (on Unix-like)
@@ -74,7 +75,7 @@ jobs:
7475

7576
- name: Print actual triggering commit
7677
run: echo "${{ env.SHA }}"
77-
78+
7879
- name: Archive acceptances test results
7980
uses: actions/[email protected]
8081
with:

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -69,18 +69,18 @@ your pom.xml:
6969
<dependency>
7070
<groupId>com.github.marketsquare</groupId>
7171
<artifactId>robotframework-seleniumlibrary</artifactId>
72-
<version>4.0.0-alpha-4.1</version>
72+
<version>4.0.0-rc-1.0</version>
7373
<scope>test</scope>
7474
</dependency>
7575

7676
If you cannot use the robotframework-maven-plugin you can use the
77-
[jar-with-dependencies](https://repo1.maven.org/maven2/com/github/marketsquare/robotframework-seleniumlibrary/4.0.0-alpha-4.1/robotframework-seleniumlibrary-4.0.0-alpha-4.1-jar-with-dependencies.jar),
78-
which contains all required libraries except ios/android ones (Appium and Selendroid). Running of tests with this can be done with command `java -jar robotframework-seleniumlibrary-4.0.0-alpha-4.1-jar-with-dependencies.jar <test location>`.
77+
[jar-with-dependencies](https://repo1.maven.org/maven2/com/github/marketsquare/robotframework-seleniumlibrary/4.0.0-rc-1.0/robotframework-seleniumlibrary-4.0.0-rc-1.0-jar-with-dependencies.jar),
78+
which contains all required libraries except ios/android ones (Appium and Selendroid). Running of tests with this can be done with command `java -jar robotframework-seleniumlibrary-4.0.0-rc-1.0-jar-with-dependencies.jar <test location>`.
7979

8080
* More information about this library can be found in the
81-
[Keyword Documentation](https://repo1.maven.org/maven2/com/github/marketsquare/robotframework-seleniumlibrary/4.0.0-alpha-4.1/robotframework-seleniumlibrary-4.0.0-alpha-4.1.html).
81+
[Keyword Documentation](https://repo1.maven.org/maven2/com/github/marketsquare/robotframework-seleniumlibrary/4.0.0-rc-1.0/robotframework-seleniumlibrary-4.0.0-rc-1.0.html).
8282
* For keyword completion in RIDE you can download this
83-
[Library Specs](https://repo1.maven.org/maven2/com/github/marketsquare/robotframework-seleniumlibrary/4.0.0-alpha-4.1/robotframework-seleniumlibrary-4.0.0-alpha-4.1.xml)
83+
[Library Specs](https://repo1.maven.org/maven2/com/github/marketsquare/robotframework-seleniumlibrary/4.0.0-rc-1.0/robotframework-seleniumlibrary-4.0.0-rc-1.0.xml)
8484
and place it in your PYTHONPATH.
8585

8686
Testing IOS/Android browsers with library

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
<groupId>com.github.marketsquare</groupId>
77
<artifactId>robotframework-seleniumlibrary</artifactId>
8-
<version>4.0.0-rc-1-SNAPSHOT</version>
8+
<version>4.0.0-rc-1.0</version>
99
<packaging>jar</packaging>
1010

1111
<name>Robot Framework :: SeleniumLibrary</name>

0 commit comments

Comments
 (0)