Skip to content

Commit

Permalink
Run python3 dev/update_mlflow_versions.py pre-release ... (#11732)
Browse files Browse the repository at this point in the history
Signed-off-by: mlflow-automation <mlflow-automation@users.noreply.github.com>
Co-authored-by: mlflow-automation <mlflow-automation@users.noreply.github.com>
  • Loading branch information
mlflow-automation and mlflow-automation committed Apr 17, 2024
1 parent 37648ac commit 328242e
Show file tree
Hide file tree
Showing 11 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion mlflow/R/mlflow/DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Type: Package
Package: mlflow
Title: Interface to 'MLflow'
Version: 2.12.0
Version: 2.12.1
Authors@R:
c(person(given = "Matei",
family = "Zaharia",
Expand Down
2 changes: 1 addition & 1 deletion mlflow/java/client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.mlflow</groupId>
<artifactId>mlflow-parent</artifactId>
<version>2.12.0</version>
<version>2.12.1</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
4 changes: 2 additions & 2 deletions mlflow/java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.mlflow</groupId>
<artifactId>mlflow-parent</artifactId>
<version>2.12.0</version>
<version>2.12.1</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>2.12.0</mlflow-version>
<mlflow-version>2.12.1</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
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.mlflow</groupId>
<artifactId>mlflow-parent</artifactId>
<version>2.12.0</version>
<version>2.12.1</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ static class VersionServlet extends HttpServlet {
@Override
public void doGet(HttpServletRequest request, HttpServletResponse response) throws IOException {
response.setStatus(HttpServletResponse.SC_OK);
response.getWriter().print("2.12.0");
response.getWriter().print("2.12.1");
response.getWriter().close();
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ public void testScoringServerWithValidPredictorRespondsToVersionCorrectly() thro
HttpResponse response = httpClient.execute(getRequest);
Assert.assertEquals(HttpServletResponse.SC_OK, response.getStatusLine().getStatusCode());
String responseBody = getHttpResponseBody(response);
Assert.assertEquals("2.12.0", responseBody);
Assert.assertEquals("2.12.1", responseBody);
server.stop();
}

Expand Down
4 changes: 2 additions & 2 deletions mlflow/java/spark/pom.xml
Original file line number Diff line number Diff line change
@@ -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_${scala.compat.version}</artifactId>
<version>2.12.0</version>
<version>2.12.1</version>
<name>${project.artifactId}</name>
<properties>
<maven.compiler.source>1.8</maven.compiler.source>
Expand All @@ -16,7 +16,7 @@
<parent>
<groupId>org.mlflow</groupId>
<artifactId>mlflow-parent</artifactId>
<version>2.12.0</version>
<version>2.12.1</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion mlflow/server/js/src/common/constants.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export const ErrorCodes = {
RESOURCE_CONFLICT: 'RESOURCE_CONFLICT',
};

export const Version = '2.12.0';
export const Version = '2.12.1';

const DOCS_VERSION = 'latest';

Expand Down
2 changes: 1 addition & 1 deletion mlflow/version.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Copyright 2018 Databricks, Inc.
import re

VERSION = "2.12.0"
VERSION = "2.12.1"


def is_release_version():
Expand Down
2 changes: 1 addition & 1 deletion pyproject.skinny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "mlflow-skinny"
version = "2.12.0"
version = "2.12.1"
description = "MLflow is an open source platform for the complete machine learning lifecycle"
readme = "README.rst"
keywords = ["mlflow", "ai", "databricks"]
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "mlflow"
version = "2.12.0"
version = "2.12.1"
description = "MLflow is an open source platform for the complete machine learning lifecycle"
readme = "README.rst"
keywords = ["mlflow", "ai", "databricks"]
Expand Down

0 comments on commit 328242e

Please sign in to comment.