You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flagon.apache.org by po...@apache.org on 2019/07/31 02:23:33 UTC

[incubator-flagon-useralejs] branch v2.0.1-RC1 updated: [FLAGON-422] fixed a few leftover 2.0.0 references in README.md

This is an automated email from the ASF dual-hosted git repository.

poorejc pushed a commit to branch v2.0.1-RC1
in repository https://gitbox.apache.org/repos/asf/incubator-flagon-useralejs.git


The following commit(s) were added to refs/heads/v2.0.1-RC1 by this push:
     new a6d27f3  [FLAGON-422] fixed a few leftover 2.0.0 references in README.md
a6d27f3 is described below

commit a6d27f391696aa60ce57df2451202c6d1e2b29c3
Author: poorejc <po...@apache.org>
AuthorDate: Tue Jul 30 22:23:14 2019 -0400

    [FLAGON-422] fixed a few leftover 2.0.0 references in README.md
---
 README.md | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/README.md b/README.md
index 4f70a3f..b08fb3d 100755
--- a/README.md
+++ b/README.md
@@ -69,12 +69,12 @@ To start logging with UserALE.js, you can either include our script in the web a
 To collect logs from a specific project, simply include this script tag on the page:
 
 ```html
-<script src="/path/to/userale-2.0.0.min.js"></script>
+<script src="/path/to/userale-2.0.1.min.js"></script>
 ```
 UserALE.js is designed to be easily configured to fit your use case. We use HTML data parameters to pass configuration options to the library. For example, to set the logging URL:
 
 ```html
-<script src="/path/to/userale-2.0.0.min.js" data-url="http://yourLoggingUrl"></script>
+<script src="/path/to/userale-2.0.1.min.js" data-url="http://yourLoggingUrl"></script>
 ```
 
 The complete list of configurable options is:
@@ -108,7 +108,7 @@ Here is an example of a filter that bounces out unwanted log and event types fro
 ```html
 <html>
   <head>
-    <script src="/path/to/userale-2.0.0.min.js" data-url="http://yourLoggingUrl"></script>
+    <script src="/path/to/userale-2.0.1.min.js" data-url="http://yourLoggingUrl"></script>
 <!--
 Modify the array page-by-page to curate your log stream:
 by adding unwanted event 'types' in type_array;