Skip to content

Commit

Permalink
Fix corrupted version string
Browse files Browse the repository at this point in the history
Signed-off-by: Eric B Munson <eric@munsonfam.org>
  • Loading branch information
khers committed Jan 17, 2024
1 parent fa98c53 commit b0a73c9
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
##4.0.5

Fiddly bits of packaging...

##4.0.4

Protect against missing headers in response
Expand Down
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ and then get a couple of random songs.
```python
#!/usr/bin/env python

from pprint import pprint
import libopensonic

# We pass in the base url, the username, password, and port number
Expand All @@ -45,7 +44,7 @@ conn = libopensonic.Connection('https://music.example.com' , 'myuser' ,
# Let's get 2 completely random songs
songs = conn.getRandomSongs(size=2)
# We'll just pretty print the results we got to the terminal
pprint(songs)
print(songs[0].to_dict())
```

As you can see, it's really pretty simple. If you use the documentation
Expand Down
2 changes: 1 addition & 1 deletion src/libopensonic/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@


#Semantic versioning string for the library
__version__ = '4.0.3'
__version__ = '4.0.5'

0 comments on commit b0a73c9

Please sign in to comment.