Skip to content

Commit c837033

Browse files
authored
V1.1.0 (#263)
* update changelog * update pyproject * fix typo * fix more typos
1 parent 5571e66 commit c837033

File tree

5 files changed

+10
-5
lines changed

5 files changed

+10
-5
lines changed

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,9 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
## [Unreleased]
8+
## [[Unreleased]]
9+
10+
## [1.1.0] - 2021-06-16
911
### Added
1012
- Option for `Transaction.flags` to be a `List` of `int`s instead of just an `int`
1113
- Instance method in `Transaction` objects to calculate their hashes locally

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ These steps assume that you're using a [Zsh](http://zsh.sourceforge.net/) shell.
3737

3838
. ~/.zshrc
3939

40-
### Manage dependencies and virutal environment
40+
### Manage dependencies and virtual environments
4141

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

pyproject.toml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "xrpl-py"
3-
version = "1.0.0"
3+
version = "1.1.0"
44
description = "A complete Python library for interacting with the XRP ledger"
55
readme = "README.md"
66
repository = "https://github.com/XRPLF/xrpl-py"
@@ -9,6 +9,9 @@ authors = [
99
"Ted Kalaw <tkalaw@ripple.com>",
1010
"Mayukha Vadari <mvadari@ripple.com>",
1111
"Greg Weisbrod <gweisbrod@ripple.com>",
12+
"Florent Uzio <fuzio@ripple.com>",
13+
"Mayur Bhandary <mbhandary@ripple.com>",
14+
"Nathan Nichols <nnichols@ripple.com>"
1215
]
1316
keywords = [
1417
"xrp",

xrpl/asyncio/clients/async_websocket_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class AsyncWebsocketClient(AsyncClient, WebsocketBase):
2727
To read messages from the client, you can iterate over
2828
the client like so::
2929
30-
async with AsyncWebsockeetClient(url) as client:
30+
async with AsyncWebsocketClient(url) as client:
3131
async for message in client:
3232
# do something with a message
3333

xrpl/clients/websocket_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ class WebsocketClient(SyncClient, WebsocketBase):
3030
To read messages from the client, you can iterate over
3131
the client like so::
3232
33-
with WebsockeetClient(url) as client:
33+
with WebsocketClient(url) as client:
3434
for message in client:
3535
# do something with a message
3636

0 commit comments

Comments
 (0)