tag name contains double quotes
See original GitHub issue[bumpversion]
current_version = 1.0.2
commit = True
tag = True
tag_name = "v{new_version}"
when using the following config file it ends up adding double quotes around tag name in the releases
like this "v1.0.0"
instead of v1.0.0
Issue Analytics
- State:
- Created 5 years ago
- Reactions:2
- Comments:5 (1 by maintainers)
Top Results From Across the Web
How to escape double quotes in a title attribute - Stack Overflow
It uses a different escape mechanism, one with which you're obviously already familiar: (reference-to-the-tag).title = "Some \"text\"";.
Read more >13.5. Single and Double Quotation Marks inside Strings
Strings inside XML Tags are enclosed by a start tag and an end tag. So the content may have any combination of single...
Read more ><q>: The Inline Quotation element - HTML - MDN Web Docs
The <q> HTML element indicates that the enclosed text is a short inline quotation. Most modern browsers implement this by surrounding the ...
Read more >HTML Quotation Elements - W3Schools
The HTML <cite> tag defines the title of a creative work (e.g. a book, a poem, a song, a movie, a painting, a...
Read more >How do I escape quotation marks/Double Quotes in a ...
The errors are on the lines that contains quotation marks/Double Quotes on ... +(</title>)" - This will select all words from the TITLE...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@AlaaAttya The reason you’re getting that error is because you edited your
.bumpversion.cfg
and didnt commit the changes. Commit your changes and try again.@SitiSchu your trick got my issue fixed, thanks a million 😃