Releasing REST API and removing SNAPSHOT reference from .md file

Change-Id: I8b7c0756106b4bffaec8200cb60a22f8cdfd1fa7
diff --git a/README.md b/README.md
index 111bd15..d31f9ba 100644
--- a/README.md
+++ b/README.md
@@ -13,7 +13,7 @@
 If a PADI or PADR packet exceeds the Ethernet MTU after adding the access loop identification TAG, the Intermediate Agent must drop the packet, and issue the corresponding PADO or PADS response with a Generic-Error TAG to the sender.
 
 PPPoE agent keeps track of the client's connect point saving it along other information (i.e: MAC address, session-id, last received packet type and etc) in a storage available through the CLI "pppoe-users". With that at hand, the agent also intercepts the downstream PPPoED packets, such as PADO, PADS and PADT from server. These responses are processed and delivered to the connect point associated with the destination MAC address. If the destination MAC address is not known for PPPoE Agent, the packet is dropped.
-A
+
 ## Component Configuration
 ```sh
  "org.opencord.pppoeagent.impl.PppoeAgent": {
@@ -53,7 +53,7 @@
 ```sh
 mvn clean install
 ```
-After these steps, the *.oar* file should be available at "pppoeagent/app/target/pppoeagent-app-1.0.0-SNAPSHOT.oar".
+After these steps, the *.oar* file should be available at "pppoeagent/app/target/pppoeagent-app-1.0.0.oar".
 
 Now you can upload and install the *.oar* in the Onos running instance using the [onos-app shell utility](https://gerrit.onosproject.org/plugins/gitiles/onos/+/refs/heads/onos-2.3/tools/package/runtime/bin/onos-app)
 
diff --git a/app/pom.xml b/app/pom.xml
index 187a9b7..145eeac 100644
--- a/app/pom.xml
+++ b/app/pom.xml
@@ -31,7 +31,7 @@
 
     <properties>
         <web.context>/onos/pppoeagent</web.context>
-        <api.version>1.0.0-SNAPSHOT</api.version>
+        <api.version>1.0.0</api.version>
         <api.title>PPPoE Agent REST API</api.title>
         <api.description>REST API to query PPPoE agent sessions information.</api.description>
         <api.package>org.opencord.pppoeagent.rest</api.package>