Skip to content

Commit d1d44ef

Browse files
authored
Merge pull request #2 from Diapolo10/nightly
[PATCH] Fixed a mistake in README example code
2 parents fc9155c + 543621f commit d1d44ef

File tree

4 files changed

+28
-5
lines changed

4 files changed

+28
-5
lines changed

CHANGELOG.md

Lines changed: 22 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
# IPlib3 Change Log
2+
# Escapyde Change Log
33

44
All notable changes to this project will be documented in this file.
55

@@ -50,7 +50,7 @@ Lorem Ipsum dolor sit amet.
5050
<!--
5151
_______________________________________________________________________________
5252
53-
## [0.2.3] - YYYY-MM-DD
53+
## [0.1.1] - YYYY-MM-DD
5454
5555
First official documentation.
5656
@@ -68,7 +68,26 @@ First official documentation.
6868

6969
_______________________________________________________________________________
7070

71-
## [0.1.0] - 2021-05-01
71+
## [0.1.1] - 2021-12-01
72+
73+
A hotfix release that fixes a problem in the README example code, and adds a screenshot of the code running.
74+
75+
### Added
76+
77+
- Added a screenshot of the example code running in IPython
78+
79+
### Changed
80+
81+
- Updated the localisation files
82+
83+
### Fixed
84+
85+
- Fixed a mistake in the `README.md` example code related to string formatters
86+
- Fixed the package name in `CHANGELOG.md`
87+
88+
_______________________________________________________________________________
89+
90+
## [0.1.0] - 2021-12-01
7291

7392
This is the beginning of the changelog. Previously made commits have not been
7493
tracked, and there are no plans to distinguish them. You may consider this

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,11 @@ from escapyde.examples.text import SKULL
2626

2727
some_text = "Hello, world!"
2828

29-
print(f"I want to print this red: {escapyde.FRED | some_text:r}, and this yellow: {escapyde.FYELLOW | 'Hi!'}.")
29+
print(f"I want to print this red: {escapyde.FRED | some_text}, and this yellow: {escapyde.FYELLOW | 'Hi!'}.")
3030

3131
print(f"Here's a cyan skull:\n{escapyde.FCYAN | SKULL}")
3232
```
33+
34+
As can be seen, the example works perfectly fine:
35+
36+
![A screenshot of the example run on IPython on Windows.](./docs/readme_screenshot.png "Not bad, not bad at all.")

docs/readme_screenshot.png

26.3 KB
Loading

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ __init__.py:F401,F403,F405\
1717

1818
[tool.poetry]
1919
name = 'escapyde'
20-
version = '0.1.0'
20+
version = '0.1.1'
2121
description = "Yet another ANSI escape sequence library for Python - now modernised!"
2222

2323
authors = ["Lari Liuhamo <lari.liuhamo+pypi@gmail.com>",]

0 commit comments

Comments
 (0)