Skip to content

Commit 303f16e

Browse files
committed
Bump to version 0.10.1
1 parent f4a5a6a commit 303f16e

File tree

4 files changed

+15
-7
lines changed

4 files changed

+15
-7
lines changed

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "geojs",
3-
"version": "0.10.0",
3+
"version": "0.10.1",
44
"description": "JavaScript Geo visualization and Analysis Library",
55
"homepage": "https://github.com/OpenGeoscience/geojs",
66
"main": "geo.js",

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@
7373
# built documents.
7474
#
7575
# The short X.Y version.
76-
version = '0.10.0'
76+
version = '0.10.1'
7777
# The full version, including alpha/beta/rc tags.
7878
release = version
7979

geo.js

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32103,6 +32103,14 @@ return /******/ (function(modules) { // webpackBootstrap
3210332103
m_features[i]._exit();
3210432104
m_this.dataTime().modified();
3210532105
m_this.modified();
32106+
}
32107+
}
32108+
32109+
// Loop through a second to time actually remove
32110+
// the given feature from the array because the
32111+
// `_exit` call above may mutate it.
32112+
for (i = 0; i < m_features.length; i += 1) {
32113+
if (m_features[i] === feature) {
3210632114
m_features.splice(i, 1);
3210732115
}
3210832116
}
@@ -47064,7 +47072,7 @@ return /******/ (function(modules) { // webpackBootstrap
4706447072
this._checkForStroke = function () {
4706547073
if (s_style('stroke') === false) {
4706647074
if (m_lineFeature && m_this.layer()) {
47067-
m_this.layer().removeFeature(m_lineFeature);
47075+
m_this.layer().deleteFeature(m_lineFeature);
4706847076
m_lineFeature = null;
4706947077
}
4707047078
return;
@@ -47144,7 +47152,7 @@ return /******/ (function(modules) { // webpackBootstrap
4714447152
////////////////////////////////////////////////////////////////////////////
4714547153
this._exit = function () {
4714647154
if (m_lineFeature && m_this.layer()) {
47147-
m_this.layer().removeFeature(m_lineFeature);
47155+
m_this.layer().deleteFeature(m_lineFeature);
4714847156
m_lineFeature = null;
4714947157
}
4715047158
s_exit();
@@ -47610,14 +47618,14 @@ return /******/ (function(modules) { // webpackBootstrap
4761047618
/* 229 */
4761147619
/***/ function(module, exports, __webpack_require__) {
4761247620

47613-
module.exports = ("0.10.0");
47621+
module.exports = ("0.10.1");
4761447622

4761547623

4761647624
/***/ },
4761747625
/* 230 */
4761847626
/***/ function(module, exports, __webpack_require__) {
4761947627

47620-
module.exports = ("49720649e1585e43d139e7de6cb40ad2aed89c05");
47628+
module.exports = ("f4a5a6af9b762c4261dd1e9cfeacd2df6e9b362d");
4762147629

4762247630

4762347631
/***/ },

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "geojs",
3-
"version": "0.10.0",
3+
"version": "0.10.1",
44
"description": "JavaScript Geo visualization and Analysis Library",
55
"homepage": "https://github.com/OpenGeoscience/geojs",
66
"license": "Apache-2.0",

0 commit comments

Comments
 (0)