Skip to content

Commit

Permalink
release v0.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielKerrigan committed Jul 25, 2023
1 parent e1980f6 commit 5496778
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 19 deletions.
28 changes: 12 additions & 16 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -1,17 +1,13 @@
{
"singleQuote": true,
"plugins": [
"prettier-plugin-svelte"
],
"pluginSearchDirs": [
"."
],
"overrides": [
{
"files": "*.svelte",
"options": {
"parser": "svelte"
}
}
]
}
"singleQuote": true,
"plugins": ["prettier-plugin-svelte"],
"pluginSearchDirs": ["."],
"overrides": [
{
"files": "*.svelte",
"options": {
"parser": "svelte"
}
}
]
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "pdpilot",
"version": "0.5.0",
"version": "0.5.1",
"description": "A Jupyter widget for exploring PDP and ICE plots.",
"keywords": [
"jupyter",
Expand Down
2 changes: 1 addition & 1 deletion pdpilot/_frontend.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@
"""

module_name = "pdpilot"
module_version = "^0.5.0"
module_version = "^0.5.1"
2 changes: 1 addition & 1 deletion pdpilot/_version.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env python
# coding: utf-8

version_info = (0, 5, 0)
version_info = (0, 5, 1)
__version__ = ".".join(map(str, version_info))

0 comments on commit 5496778

Please sign in to comment.