File tree Expand file tree Collapse file tree 12 files changed +15
-15
lines changed
main/java/org/mlflow/sagemaker Expand file tree Collapse file tree 12 files changed +15
-15
lines changed Original file line number Diff line number Diff line change 11Type: Package
22Package: mlflow
33Title: Interface to 'MLflow'
4- Version: 2.21.4
4+ Version: 2.22.1
55Authors@R:
66 c(person(given = "Matei",
77 family = "Zaharia",
Original file line number Diff line number Diff line change 55 <parent >
66 <groupId >org.mlflow</groupId >
77 <artifactId >mlflow-parent</artifactId >
8- <version >2.21.4 -SNAPSHOT</version >
8+ <version >2.22.1 -SNAPSHOT</version >
99 <relativePath >../pom.xml</relativePath >
1010 </parent >
1111
Original file line number Diff line number Diff line change 33 <modelVersion >4.0.0</modelVersion >
44 <groupId >org.mlflow</groupId >
55 <artifactId >mlflow-parent</artifactId >
6- <version >2.21.4 -SNAPSHOT</version >
6+ <version >2.22.1 -SNAPSHOT</version >
77 <packaging >pom</packaging >
88 <name >MLflow Parent POM</name >
99 <url >http://mlflow.org</url >
5959 </distributionManagement >
6060
6161 <properties >
62- <mlflow-version >2.21.4 -SNAPSHOT</mlflow-version >
62+ <mlflow-version >2.22.1 -SNAPSHOT</mlflow-version >
6363 <maven .compiler.source>1.8</maven .compiler.source>
6464 <maven .compiler.target>1.8</maven .compiler.target>
6565 <scala .version>2.11.12</scala .version>
Original file line number Diff line number Diff line change 55 <parent >
66 <groupId >org.mlflow</groupId >
77 <artifactId >mlflow-parent</artifactId >
8- <version >2.21.4 -SNAPSHOT</version >
8+ <version >2.22.1 -SNAPSHOT</version >
99 <relativePath >../pom.xml</relativePath >
1010 </parent >
1111
Original file line number Diff line number Diff line change @@ -172,7 +172,7 @@ static class VersionServlet extends HttpServlet {
172172 @ Override
173173 public void doGet (HttpServletRequest request , HttpServletResponse response ) throws IOException {
174174 response .setStatus (HttpServletResponse .SC_OK );
175- response .getWriter ().print ("2.21.4 -SNAPSHOT" );
175+ response .getWriter ().print ("2.22.1 -SNAPSHOT" );
176176 response .getWriter ().close ();
177177 }
178178 }
Original file line number Diff line number Diff line change @@ -78,7 +78,7 @@ public void testScoringServerWithValidPredictorRespondsToVersionCorrectly() thro
7878 HttpResponse response = httpClient .execute (getRequest );
7979 Assert .assertEquals (HttpServletResponse .SC_OK , response .getStatusLine ().getStatusCode ());
8080 String responseBody = getHttpResponseBody (response );
81- Assert .assertEquals ("2.21.4 -SNAPSHOT" , responseBody );
81+ Assert .assertEquals ("2.22.1 -SNAPSHOT" , responseBody );
8282 server .stop ();
8383 }
8484
Original file line number Diff line number Diff line change 11<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" >
22 <modelVersion >4.0.0</modelVersion >
33 <artifactId >mlflow-spark_${scala.compat.version} </artifactId >
4- <version >2.21.4 -SNAPSHOT</version >
4+ <version >2.22.1 -SNAPSHOT</version >
55 <name >${project.artifactId} </name >
66 <properties >
77 <maven .compiler.source>1.8</maven .compiler.source>
1616 <parent >
1717 <groupId >org.mlflow</groupId >
1818 <artifactId >mlflow-parent</artifactId >
19- <version >2.21.4 -SNAPSHOT</version >
19+ <version >2.22.1 -SNAPSHOT</version >
2020 <relativePath >../pom.xml</relativePath >
2121 </parent >
2222
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ export const ErrorCodes = {
99 RESOURCE_CONFLICT : 'RESOURCE_CONFLICT' ,
1010} ;
1111
12- export const Version = '2.21.4 .dev0' ;
12+ export const Version = '2.22.1 .dev0' ;
1313
1414const DOCS_VERSION = 'latest' ;
1515
Original file line number Diff line number Diff line change 11# Copyright 2018 Databricks, Inc.
22import re
33
4- VERSION = "2.21.4 .dev0"
4+ VERSION = "2.22.1 .dev0"
55
66
77def is_release_version ():
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ build-backend = "setuptools.build_meta"
99
1010[project ]
1111name = " mlflow"
12- version = " 2.21.4 .dev0"
12+ version = " 2.22.1 .dev0"
1313description = " MLflow is an open source platform for the complete machine learning lifecycle"
1414readme = " README.md"
1515keywords = [" mlflow" , " ai" , " databricks" ]
@@ -27,7 +27,7 @@ classifiers = [
2727]
2828requires-python = " >=3.9"
2929dependencies = [
30- " mlflow-skinny==2.21.4 .dev0" ,
30+ " mlflow-skinny==2.22.1 .dev0" ,
3131 " Flask<4" ,
3232 " Jinja2<4,>=2.11; platform_system != 'Windows'" ,
3333 " Jinja2<4,>=3.0; platform_system == 'Windows'" ,
You can’t perform that action at this time.
0 commit comments