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

prepares release 3.2.0 #458

Merged
merged 1 commit into from
Apr 1, 2024
Merged
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/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ name: Build

on:
push:
branches: [ "main", "3.0.x", "3.1.x" ]
branches: [ "main", "3.0.x", "3.1.x", "3.2.0" ]
pull_request:
branches: [ "main", "3.0.x", "3.1.x" ]
branches: [ "main", "3.0.x", "3.1.x", "3.2.0" ]

jobs:
build:
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ To include it in your Maven project, add the dependency to your pom. For example
<dependency>
<groupId>com.ezylang</groupId>
<artifactId>EvalEx</artifactId>
<version>3.1.2</version>
<version>3.2.0</version>
</dependency>
</dependencies>
```
Expand All @@ -69,7 +69,7 @@ If you're using gradle add the dependencies to your project's app build.gradle:

```gradle
dependencies {
compile 'com.ezylang:EvalEx:3.1.2'
compile 'com.ezylang:EvalEx:3.2.0'
}
```

Expand Down
4 changes: 2 additions & 2 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ To include it in your Maven project, add the dependency to your pom. For example
<dependency>
<groupId>com.ezylang</groupId>
<artifactId>EvalEx</artifactId>
<version>3.1.2</version>
<version>3.2.0</version>
</dependency>
</dependencies>
```
Expand All @@ -63,7 +63,7 @@ If you're using gradle add the dependencies to your project's app build.gradle:

```gradle
dependencies {
compile 'com.ezylang:EvalEx:3.1.2'
compile 'com.ezylang:EvalEx:3.2.0'
}
```

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>com.ezylang</groupId>
<artifactId>EvalEx</artifactId>
<version>3.2.0-SNAPSHOT</version>
<version>3.2.0</version>

<name>EvalEx</name>

Expand Down
Loading