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

[ALL TESTS] Update #5279

Merged
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion mlflow/R/mlflow/DESCRIPTION
@@ -1,7 +1,7 @@
Type: Package
Package: mlflow
Title: Interface to 'MLflow'
Version: 1.22.1
Version: 1.23.0
Authors@R:
c(person(given = "Matei",
family = "Zaharia",
Expand Down
2 changes: 1 addition & 1 deletion mlflow/java/client/pom.xml
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.mlflow</groupId>
<artifactId>mlflow-parent</artifactId>
<version>1.22.1-SNAPSHOT</version>
<version>1.23.0</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
4 changes: 2 additions & 2 deletions mlflow/java/pom.xml
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.mlflow</groupId>
<artifactId>mlflow-parent</artifactId>
<version>1.22.1-SNAPSHOT</version>
<version>1.23.0</version>
<packaging>pom</packaging>
<name>MLflow Parent POM</name>
<url>http://mlflow.org</url>
Expand Down Expand Up @@ -59,7 +59,7 @@
</distributionManagement>

<properties>
<mlflow-version>1.22.1-SNAPSHOT</mlflow-version>
<mlflow-version>1.23.0</mlflow-version>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<scala.version>2.11.12</scala.version>
Expand Down
2 changes: 1 addition & 1 deletion mlflow/java/scoring/pom.xml
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.mlflow</groupId>
<artifactId>mlflow-parent</artifactId>
<version>1.22.1-SNAPSHOT</version>
<version>1.23.0</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
4 changes: 2 additions & 2 deletions mlflow/java/spark/pom.xml
@@ -1,7 +1,7 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<artifactId>mlflow-spark</artifactId>
<version>1.22.1-SNAPSHOT</version>
<version>1.23.0</version>
<name>${project.artifactId}</name>
<properties>
<maven.compiler.source>1.8</maven.compiler.source>
Expand All @@ -15,7 +15,7 @@
<parent>
<groupId>org.mlflow</groupId>
<artifactId>mlflow-parent</artifactId>
<version>1.22.1-SNAPSHOT</version>
<version>1.23.0</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion mlflow/version.py
Expand Up @@ -2,7 +2,7 @@
import re


VERSION = "1.22.1.dev0"
VERSION = "1.23.0"


def is_release_version():
Expand Down