Skip to content
This repository was archived by the owner on Aug 25, 2023. It is now read-only.

Commit f59f45a

Browse files
committed
Bump to 0.0.3
1 parent d61d7f8 commit f59f45a

File tree

6 files changed

+46
-4
lines changed

6 files changed

+46
-4
lines changed

README.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Nodeogram is a simple yet complete Node.JS module for Telegram bots.
77
* **Promises**. The entire library is promise-based
88
* **Event based**. Nodeogram provides an event-based handling of updates, allowing you to interact more easily with messages, commands, callback and inline queries.
99

10-
Nodeogram is an open-source project available on `GitHub <https://github.com/ALCC01/nodeogram>`_ and `npm <https://www.npmjs.com/package/nodeogram>`_.
10+
Nodeogram is an open-source project available on [GitHub](https://github.com/ALCC01/nodeogram) and [npm](https://www.npmjs.com/package/nodeogram).
1111

1212
## Getting started
1313

@@ -30,8 +30,13 @@ bot.on('message', message => message.reply("Hello World!"));
3030
And you are done. You can see more extensive examples in the [library overview](https://dev.albertocoscia.me/nodeogram/quickstart.html)
3131

3232
## Documentation
33+
3334
Please refer to the [Nodeogram documentation](https://dev.albertocoscia.me/nodeogram/)
3435

36+
## Changelog
37+
38+
Please refer to the [Nodeogram documentation](https://dev.albertocoscia.me/nodeogram/changelog.html)
39+
3540
## License
3641

3742
Nodeogram - A Node.JS Telegram bots API library

docs/changelog.rst

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
Changelog
2+
=========
3+
4+
===============
5+
Nodeogram 0.0.1
6+
===============
7+
8+
* The first Nodeogram pre-release.
9+
* Extensive support for the main objects of the Telegram API.
10+
11+
===============
12+
Nodeogram 0.0.2
13+
===============
14+
15+
* Fixed multiple inconsistencies I found while documenting the code.
16+
* Documented most of the library.
17+
18+
===============
19+
Nodeogram 0.0.3
20+
===============
21+
22+
* Made the Bot object more configurable.
23+
24+
* The default /help command can be disabled.
25+
26+
* Introduced the new profiles management feature
27+
28+
* It is possible to provide a path to which save chats and users that the bot is aware of
29+
* It is possible to specify which data should be saved
30+
* You can broadcast to saved chats and users
31+
32+
* Commands can now be hidden from the default /help command

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,9 +59,9 @@
5959
# built documents.
6060
#
6161
# The short X.Y version.
62-
version = u'0.0.2'
62+
version = u'0.0.3'
6363
# The full version, including alpha/beta/rc tags.
64-
release = u'0.0.2'
64+
release = u'0.0.3'
6565

6666
# The language for content autogenerated by Sphinx. Refer to documentation
6767
# for a list of supported languages.

docs/index.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@ Nodeogram is released under the GNU General Public License 3.0.
6767

6868
style
6969
quickstart
70+
changelog
7071

7172
.. _objects-documentation:
7273
.. toctree::

docs/quickstart.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@ Overview
33

44
This guide provides an overview of the main Nodeogram features.
55

6+
.. warning::
7+
8+
Please note that Nodeogram is still in early development and its features could change in any given moment.
9+
610
=========================
711
Getting access to the API
812
=========================

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "nodeogram",
3-
"version": "0.0.2",
3+
"version": "0.0.3",
44
"description": "A simple yet complete Node.JS module for Telegram bots",
55
"main": "index.js",
66
"scripts": {

0 commit comments

Comments
 (0)