Skip to content

Commit

Permalink
bump: version 0.7.0 → 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bsamseth committed Sep 12, 2022
1 parent d518395 commit a87a904
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 3 deletions.
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,24 @@
## 1.0.0 (2022-09-12)

### Fix

- respect `insecure` option in .databrickscfg (#28)
- restore Python 3.8 compatability
- handle trailing whitespace the same as Databricks
- add strict mypy typing to project
- ignore non-text files

### Feat

- recursively discover remote notebooks
- remove option for two-space indentation

### BREAKING CHANGE

- Obviously. No longer required due to Databricks adding
option for 4 space indentation. So in keeping with Black's philosophy,
we don't keep options that are not needed.

## 0.7.0 (2022-09-03)

### Feat
Expand Down
2 changes: 1 addition & 1 deletion blackbricks/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.7.0"
__version__ = "1.0.0"
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "blackbricks"
version = "0.7.0"
version = "1.0.0"
description = "Black for Databricks notebooks"
authors = ["Bendik Samseth <[email protected]>"]
license = "MIT"
Expand Down Expand Up @@ -41,7 +41,7 @@ mypy = "^0.971"

[tool.commitizen]
name = "cz_conventional_commits"
version = "0.7.0"
version = "1.0.0"
tag_format = "$version"
version_files = [
"blackbricks/__init__.py:version",
Expand Down

0 comments on commit a87a904

Please sign in to comment.