Skip to content

Commit

Permalink
0.8.2
Browse files Browse the repository at this point in the history
  • Loading branch information
dilshod committed Dec 13, 2023
1 parent 4384f2b commit f2a429a
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
version 0.8.2 (2023-Dec-13):
* add "-" notation for reading from stdin
* refactor float formatting in data processing
* Added file separator ASCII(28) as optional delimiter
* added formatted inline strings support
* #228 issue fix

version 0.8.1 (2023-Jan-9):
* include hidden rows options

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ classifiers = [
]
urls = {Homepage = "http://github.com/dilshod/xlsx2csv"}
#dynamic = ["version"]
version = "0.8.1"
version = "0.8.2"

[project.scripts]
xlsx2csv = "xlsx2csv:main"
Expand Down
2 changes: 1 addition & 1 deletion xlsx2csv.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

__author__ = "Dilshod Temirkhodjaev <tdilshod@gmail.com>"
__license__ = "MIT"
__version__ = "0.8.1"
__version__ = "0.8.2"

import csv, datetime, zipfile, sys, os, re, signal, io
import xml.parsers.expat
Expand Down

1 comment on commit f2a429a

@Konfekt
Copy link

Choose a reason for hiding this comment

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

Maybe a git tag might be missing that lets Github recognize this version increment as well?

Please sign in to comment.