Skip to content

Commit

Permalink
Publish 1.2.0
Browse files Browse the repository at this point in the history
SHA256 hashes:

jupyterlab-google-analytics-1.2.0.tgz: fade00fe1b7ad5283495fd45fa09a98ec99cb6f4d6e0aa69365b7b606b086383

jupyterlab_google_analytics-1.2.0-py3-none-any.whl: 63395b2e9292624cf5b0d04b330172da72845d8bfa55b958229e80954aacad82

jupyterlab_google_analytics-1.2.0.tar.gz: b2cb7d620c800c5aa749a57852744ab2d99af3562fb2da334654f3fb17c04625
  • Loading branch information
paulkim3151 committed Nov 1, 2023
1 parent 66dd257 commit a80aa3a
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 26 deletions.
18 changes: 16 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,26 @@

<!-- <START NEW CHANGELOG ENTRY> -->

## 1.0.0
## 1.2.0

No merged PRs
([Full Changelog](https://github.com/team-monolith-product/jupyterlab-google-analytics/compare/v1.0.0...66dd25763b641626a57c5505d234953ca0dc9d97))

### Enhancements made

- Upgrade to Jupyterlab4 [#12](https://github.com/team-monolith-product/jupyterlab-google-analytics/pull/12) ([@paulkim3151](https://github.com/paulkim3151))

### Contributors to this release

([GitHub contributors page for this release](https://github.com/team-monolith-product/jupyterlab-google-analytics/graphs/contributors?from=2022-10-08&to=2023-11-01&type=c))

[@paulkim3151](https://github.com/search?q=repo%3Ateam-monolith-product%2Fjupyterlab-google-analytics+involves%3Apaulkim3151+updated%3A2022-10-08..2023-11-01&type=Issues)

<!-- <END NEW CHANGELOG ENTRY> -->

## 1.0.0

No merged PRs

## 0.2.0

([Full Changelog](https://github.com/team-monolith-product/jupyterlab-google-analytics/compare/v0.1.0...b3554c1a9d56984e62b9a229fc6ca2787591f5ea))
Expand Down
27 changes: 4 additions & 23 deletions jupyterlab_google_analytics/_version.py
Original file line number Diff line number Diff line change
@@ -1,23 +1,4 @@
import json
from pathlib import Path

__all__ = ["__version__"]

def _fetchVersion():
HERE = Path(__file__).parent.resolve()

for settings in HERE.rglob("package.json"):
try:
with settings.open() as f:
version = json.load(f)["version"]
return (
version.replace("-alpha.", "a")
.replace("-beta.", "b")
.replace("-rc.", "rc")
)
except FileNotFoundError:
pass

raise FileNotFoundError(f"Could not find package.json under dir {HERE!s}")

__version__ = _fetchVersion()
# This file is auto-generated by Hatchling. As such, do not:
# - modify
# - track in version control e.g. be sure to add to .gitignore
__version__ = VERSION = '1.2.0'
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jupyterlab-google-analytics",
"version": "1.1.0",
"version": "1.2.0",
"description": "A JupyterLab extension.",
"keywords": [
"jupyter",
Expand Down

0 comments on commit a80aa3a

Please sign in to comment.