Skip to content

Commit b142ee1

Browse files
committed
bump version
1 parent cba9255 commit b142ee1

File tree

2 files changed

+15
-4
lines changed

2 files changed

+15
-4
lines changed

README.md

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,12 @@ var getAppstoreAppMetadata = require("react-native-appstore-version-checker")
5757
//On Android u can do
5858
getAppstoreAppMetadata("com.supercell.clashofclans") //put any apps packageId here
5959
.then(metadata => {
60-
console.log("clashofclans android app version on playstore", metadata.version, "published on", metadata.currentVersionReleaseDate);
60+
console.log(
61+
"clashofclans android app version on playstore",
62+
metadata.version,
63+
"published on",
64+
metadata.currentVersionReleaseDate
65+
);
6166
})
6267
.catch(err => {
6368
console.log("error occurred", err);
@@ -66,7 +71,12 @@ getAppstoreAppMetadata("com.supercell.clashofclans") //put any apps packageId he
6671
//On IOS u can do
6772
getAppstoreAppMetadata("529479190") //put any apps id here
6873
.then(appVersion => {
69-
console.log("clashofclans android app version on appstore", metadata.version, "published on", metadata.currentVersionReleaseDate);
74+
console.log(
75+
"clashofclans android app version on appstore",
76+
metadata.version,
77+
"published on",
78+
metadata.currentVersionReleaseDate
79+
);
7080
})
7181
.catch(err => {
7282
console.log("error occurred", err);
@@ -134,7 +144,7 @@ const storeSpecificId =
134144

135145
getAppstoreAppMetadata(storeSpecificId, {
136146
jquerySelectors: {
137-
version: "[itemprop='softwareVersion']",
147+
version: "[itemprop='softwareVersion']"
138148
},
139149
typeOfId: "id",
140150
country: "de"
@@ -174,6 +184,7 @@ Quick note: it will get the public version from stores, that is, will not get al
174184
- [Yuttana K](https://github.com/Thunderbird7)
175185
- [Luís](https://github.com/luissmg)
176186
- [Grover TB](https://github.com/grovertb)
187+
- [David Saltares](https://github.com/dsaltares)
177188

178189
### License
179190

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-native-appstore-version-checker",
3-
"version": "2.7.2",
3+
"version": "3.0.0",
44
"description": "A react native module to find the app version on play store and ios app store",
55
"main": "index.js",
66
"scripts": {

0 commit comments

Comments
 (0)