Skip to content

Commit be7dd51

Browse files
committed
Version bump.
1 parent bd90df5 commit be7dd51

File tree

5 files changed

+12
-10
lines changed

5 files changed

+12
-10
lines changed

README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ PNotify is a vanilla JavaScript notification library. PNotify can provide [deskt
55
<h1>Demos</h1>
66

77
* http://sciactive.com/pnotify/ for the latest release (v3)
8-
* https://sciactive.github.io/pnotify/ for what's in development (v4-alpha)
8+
* https://sciactive.github.io/pnotify/ for what's in development (v4-beta)
99

1010
<h1>Table of Contents</h1>
1111

@@ -51,9 +51,9 @@ PNotify is a vanilla JavaScript notification library. PNotify can provide [deskt
5151

5252
# Whoa there!
5353

54-
Unless you're an alpha tester, **none of this README applies to you!** You want to check out the **[README on the master branch](https://github.com/sciactive/pnotify/blob/master/README.md)**.
54+
Unless you're a beta tester, **none of this README applies to you!** You want to check out the **[README on the master branch](https://github.com/sciactive/pnotify/blob/master/README.md)**.
5555

56-
This README is for **PNotify 4**. v4 is only in alpha stage, but it's got some huge changes:
56+
This README is for **PNotify 4**. v4 is in beta stage, but it's got some huge changes:
5757

5858
* **jQuery is no longer required.** v4 doesn't require any libraries, actually.
5959
* It's built using [Svelte](http://svelte.technology), which means it compiles down to vanilla JS.
@@ -65,6 +65,8 @@ This README is for **PNotify 4**. v4 is only in alpha stage, but it's got some h
6565
* NonBlock module spun off into its own project, [NonBlock.js](https://github.com/sciactive/nonblockjs).
6666
* There is a Compat module available to allow you to run PNotify 3 code with PNotify 4.
6767

68+
It should be safe to use in production code, but please report any issues you run into.
69+
6870
## Running PNotify 3 Code with the Compat Module
6971

7072
You can use `PNotifyCompat` instead of `PNotify` in order to run PNotify 3 code. Check out `demo/compat-*.html` for more examples.

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@
243243
<section class="container page-banner">
244244
<div>
245245
<h1>PNotify</h1>
246-
<h3>4-<abbr title="you can use it, if you're daring">alpha</abbr></h3>
246+
<h3>4-<abbr title="it should be safe to use, but please report any problems">beta</abbr></h3>
247247
<p id="description">Beautiful <a href="demo/nodependencies.html" target="_blank">dependency free</a> notifications.</p>
248248
</div>
249249
<div>

package-lock.json

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "pnotify",
3-
"version": "4.0.0-alpha.4",
3+
"version": "4.0.0-beta.1",
44
"description": "Beautiful dependency free notifications.",
55
"keywords": [
66
"notice",

src/PNotify.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ <h4 ref:titleContainer class="ui-pnotify-title {_styles.title ? _styles.title :
150150
// Add static properties to the PNotify object.
151151
PNotify = Component;
152152

153-
PNotify.VERSION = '4.0.0-alpha.3';
153+
PNotify.VERSION = '4.0.0-beta.1';
154154

155155
PNotify.defaultStack = {
156156
dir1: 'down',

0 commit comments

Comments
 (0)