From 7d50dae2ac6f3fb34d4d1af09f07804da167a6cd Mon Sep 17 00:00:00 2001 From: Nate Schmitz Date: Tue, 6 Aug 2024 11:34:46 -0700 Subject: [PATCH] Bump version number. PiperOrigin-RevId: 660035332 --- javascript/package.json | 2 +- javascript/src/apiclient.js | 2 +- python/ee/__init__.py | 2 +- python/pyproject.toml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/javascript/package.json b/javascript/package.json index 2dd37920b..599466a05 100644 --- a/javascript/package.json +++ b/javascript/package.json @@ -1,6 +1,6 @@ { "name": "@google/earthengine", - "version": "0.1.414", + "version": "0.1.415", "description": "JavaScript client for Google Earth Engine API.", "author": "Google LLC", "license": "Apache-2.0", diff --git a/javascript/src/apiclient.js b/javascript/src/apiclient.js index 8c3281caa..8ff199ba6 100644 --- a/javascript/src/apiclient.js +++ b/javascript/src/apiclient.js @@ -24,7 +24,7 @@ const {trustedResourceUrl} = goog.require('safevalues'); /** @namespace */ const apiclient = {}; -const API_CLIENT_VERSION = '0.1.414'; +const API_CLIENT_VERSION = '0.1.415'; exports.VERSION = apiVersion.VERSION; exports.API_CLIENT_VERSION = API_CLIENT_VERSION; diff --git a/python/ee/__init__.py b/python/ee/__init__.py index def9f3334..292f32749 100644 --- a/python/ee/__init__.py +++ b/python/ee/__init__.py @@ -1,6 +1,6 @@ """The EE Python library.""" -__version__ = '0.1.414' +__version__ = '0.1.415' # Using lowercase function naming to match the JavaScript names. # pylint: disable=g-bad-name diff --git a/python/pyproject.toml b/python/pyproject.toml index f8bfdde00..d59169744 100644 --- a/python/pyproject.toml +++ b/python/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "earthengine-api" -version = "0.1.414" +version = "0.1.415" description = "Earth Engine Python API" readme = "README.md" requires-python = ">=3.8"