From 89b62662f9396a6a1397845bb551ed5c55be6272 Mon Sep 17 00:00:00 2001 From: Daniel Wiell Date: Thu, 17 Oct 2024 09:50:21 +0000 Subject: [PATCH] Updated fork version to 1.1.5rc0. --- javascript/package.json | 4 ++-- javascript/src/apiclient.js | 2 +- python/ee/__init__.py | 2 +- python/pyproject.toml | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/javascript/package.json b/javascript/package.json index 3be5fe8b1..adc7c4212 100644 --- a/javascript/package.json +++ b/javascript/package.json @@ -1,6 +1,6 @@ { "name": "@google/earthengine", - "version": "0.0.0", + "version": "1.1.5", "description": "JavaScript client for Google Earth Engine API.", "author": "Google LLC", "license": "Apache-2.0", @@ -35,4 +35,4 @@ "karma-chrome-launcher": "^2.1.1", "karma-jasmine": "^1.1.0" } -} +} \ No newline at end of file diff --git a/javascript/src/apiclient.js b/javascript/src/apiclient.js index e8221acbb..81c9d50b7 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.0.0'; +const API_CLIENT_VERSION = '1.1.5'; exports.VERSION = apiVersion.VERSION; exports.API_CLIENT_VERSION = API_CLIENT_VERSION; diff --git a/python/ee/__init__.py b/python/ee/__init__.py index 89b17187e..9501dcec8 100644 --- a/python/ee/__init__.py +++ b/python/ee/__init__.py @@ -1,6 +1,6 @@ """The EE Python library.""" -__version__ = '0.0.0' +__version__ = '1.1.5rc0' # 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 ca2c9effe..fb85e59ca 100644 --- a/python/pyproject.toml +++ b/python/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "earthengine-api" -version = "0.0.0" +version = "1.1.5rc0" description = "Earth Engine Python API" readme = "README.md" requires-python = ">=3.8"