Skip to content

Commit

Permalink
V1.1.0 (#263)
Browse files Browse the repository at this point in the history
* update changelog

* update pyproject

* fix typo

* fix more typos
  • Loading branch information
mvadari authored Jun 16, 2021
1 parent 5571e66 commit c837033
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 5 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
## [[Unreleased]]

## [1.1.0] - 2021-06-16
### Added
- Option for `Transaction.flags` to be a `List` of `int`s instead of just an `int`
- Instance method in `Transaction` objects to calculate their hashes locally
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ These steps assume that you're using a [Zsh](http://zsh.sourceforge.net/) shell.

. ~/.zshrc

### Manage dependencies and virutal environment
### Manage dependencies and virtual environments

To simplify managing library dependencies and the virtual environment, `xrpl-py` uses [`poetry`](https://python-poetry.org/docs).

Expand Down
5 changes: 4 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "xrpl-py"
version = "1.0.0"
version = "1.1.0"
description = "A complete Python library for interacting with the XRP ledger"
readme = "README.md"
repository = "https://github.com/XRPLF/xrpl-py"
Expand All @@ -9,6 +9,9 @@ authors = [
"Ted Kalaw <[email protected]>",
"Mayukha Vadari <[email protected]>",
"Greg Weisbrod <[email protected]>",
"Florent Uzio <[email protected]>",
"Mayur Bhandary <[email protected]>",
"Nathan Nichols <[email protected]>"
]
keywords = [
"xrp",
Expand Down
2 changes: 1 addition & 1 deletion xrpl/asyncio/clients/async_websocket_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ class AsyncWebsocketClient(AsyncClient, WebsocketBase):
To read messages from the client, you can iterate over
the client like so::
async with AsyncWebsockeetClient(url) as client:
async with AsyncWebsocketClient(url) as client:
async for message in client:
# do something with a message
Expand Down
2 changes: 1 addition & 1 deletion xrpl/clients/websocket_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class WebsocketClient(SyncClient, WebsocketBase):
To read messages from the client, you can iterate over
the client like so::
with WebsockeetClient(url) as client:
with WebsocketClient(url) as client:
for message in client:
# do something with a message
Expand Down

0 comments on commit c837033

Please sign in to comment.