Skip to content

Commit

Permalink
Bump version to 1.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
carlobaldassi committed May 10, 2024
1 parent 7eccbd6 commit b1d27c6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name = "TextWrap"
uuid = "b718987f-49a8-5099-9789-dcd902bef87d"
version = "1.0.1"
version = "1.0.2"
author = ["Carlo Baldassi <carlobaldassi@gmail.com>"]

[compat]
Expand Down
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,11 @@ julia> using TextWrap
- [**STABLE**][docs-stable-url] &mdash; **most recently tagged version of the documentation.**
- [**DEV**][docs-dev-url] &mdash; *in-development version of the documentation.*

## Changes in release 1.0.2

* Correctly account for the width of each character using `textwidth` instead of `length`
* Fix a bug with `subsequent_indent`

## Changes in release 1.0.1

* Improve recognition of ANSI escape codes
Expand Down

2 comments on commit b1d27c6

@carlobaldassi
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/106532

Tip: Release Notes

Did you know you can add release notes too? Just add markdown formatted text underneath the comment after the text
"Release notes:" and it will be added to the registry PR, and if TagBot is installed it will also be added to the
release that TagBot creates. i.e.

@JuliaRegistrator register

Release notes:

## Breaking changes

- blah

To add them here just re-invoke and the PR will be updated.

Tagging

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v1.0.2 -m "<description of version>" b1d27c6af76f9babe19a9da9513eb872fef5abce
git push origin v1.0.2

Please sign in to comment.