Skip to content

Commit

Permalink
Merge pull request #46 from LennartHennigs/45-esptelnetstream-private…
Browse files Browse the repository at this point in the history
…-of-stream

45 esptelnetstream private of stream
  • Loading branch information
LennartHennigs authored Mar 13, 2023
2 parents 96f59b8 + b40e878 commit 47822e1
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@

**Note:** Unreleased changes are checked in but not part of an official release (available through the Arduino IDE or PlatfomIO) yet. This allows you to test WiP features and give feedback to them.

## [2.1.1] - 2022-03-12

- made `ESPStream`'s inheritance of `Stream` public as requested in [#45](https://github.com/LennartHennigs/ESPTelnet/issues/45)

## [2.1.0] - 2022-03-12

- simplified and removed parameter from `isClientConnected(TCPClient &client)` to `isConnected()` (BREAKING CHANGE)
Expand Down
2 changes: 1 addition & 1 deletion library.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"type": "git",
"url": "https://github.com/LennartHennigs/ESPTelnet"
},
"version": "2.1.0",
"version": "2.1.1",
"authors": {
"name": "Lennart Hennigs",
"url": "https://lennarthennigs.de"
Expand Down
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name=ESP Telnet
version=2.1.0
version=2.1.1
author=Lennart Hennigs
maintainer=Lennart Hennigs <mail@lennarthennigs.de>
sentence=ESP8266/ESP32 library that allows you to setup a telnet server.
Expand Down
2 changes: 1 addition & 1 deletion src/ESPTelnetStream.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

/////////////////////////////////////////////////////////////////

class ESPTelnetStream : public ESPTelnetBase, Stream {
class ESPTelnetStream : public ESPTelnetBase, public Stream {
public:
using ESPTelnetBase::ESPTelnetBase;

Expand Down

0 comments on commit 47822e1

Please sign in to comment.