Skip to content

Commit

Permalink
tomlkit compatibility 0.11.2+, bump version & update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
pappasam committed Jan 22, 2023
1 parent 792233e commit 333ca41
Show file tree
Hide file tree
Showing 3 changed files with 64 additions and 49 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## 0.22.3

### Fixed

- Turns out that, at this time, `toml-sort` is only compatible with `tomlkit` `0.11.2`+. We now make this clear in our dependencies. See: <https://github.com/pappasam/toml-sort/issues/41> and <https://github.com/sdispater/tomlkit/compare/0.11.1...0.11.2>.

## 0.22.2

### Added
Expand Down
100 changes: 55 additions & 45 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 3 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ include_trailing_comma = true

[tool.poetry]
name = "toml-sort"
version = "0.22.2"
version = "0.22.3"
description = "Toml sorting library"
authors = ["Sam Roeca <[email protected]>"]
readme = "README.md"
Expand All @@ -25,14 +25,14 @@ classifiers = [
"Environment :: Console",
"Topic :: Software Development :: Code Generators",
"Topic :: Utilities",
"Typing :: Typed",
"Typing :: Typed"
]
include = ["README.md"]
license = "MIT"

[tool.poetry.dependencies]
python = "^3.7"
tomlkit = ">=0.8.0"
tomlkit = ">=0.11.2"

[tool.poetry.dev-dependencies]
pylint = ">=2.13.9"
Expand All @@ -50,7 +50,6 @@ m2r2 = ">=0.3.2"
docformatter = ">=1.5.1"
pytest-cov = ">=3.0.0"


[tool.poetry.scripts]
toml-sort = 'toml_sort.cli:cli'

Expand Down

0 comments on commit 333ca41

Please sign in to comment.