Skip to content

Commit adc496e

Browse files
committed
fix versions
1 parent 6b7548f commit adc496e

8 files changed

Lines changed: 19 additions & 19 deletions

File tree

client/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@
1515
"build"
1616
],
1717
"dependencies": {
18-
"@pkmn/data": "^0.10.0",
18+
"@pkmn/data": "^0.10.1",
1919
"@pkmn/protocol": "^0.7.1"
2020
},
2121
"devDependencies": {
22-
"@pkmn/dex": "^0.10.0"
22+
"@pkmn/dex": "^0.10.1"
2323
},
2424
"scripts": {
2525
"lint": "eslint --cache src",

data/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pkmn/data",
3-
"version": "0.10.0",
3+
"version": "0.10.1",
44
"description": "A forked implementation of the Pokémon Showdown client's data layer",
55
"repository": "github:pkmn/ps",
66
"license": "MIT",
@@ -16,12 +16,12 @@
1616
"build"
1717
],
1818
"dependencies": {
19-
"@pkmn/dex-types": "^0.10.0"
19+
"@pkmn/dex-types": "^0.10.1"
2020
},
2121
"devDependencies": {
22-
"@pkmn/dex": "^0.10.0",
23-
"@pkmn/mods": "^0.10.0",
24-
"@pkmn/sim": "^0.10.0",
22+
"@pkmn/dex": "^0.10.1",
23+
"@pkmn/mods": "^0.10.1",
24+
"@pkmn/sim": "^0.10.1",
2525
"@smogon/calc": "^0.10.0"
2626
},
2727
"scripts": {

dex/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pkmn/dex",
3-
"version": "0.10.0",
3+
"version": "0.10.1",
44
"description": "A unification of Pokémon Showdown's client's and server's data layers",
55
"repository": "github:pkmn/ps",
66
"license": "MIT",
@@ -16,7 +16,7 @@
1616
"build"
1717
],
1818
"dependencies": {
19-
"@pkmn/dex-types": "^0.10.0"
19+
"@pkmn/dex-types": "^0.10.1"
2020
},
2121
"scripts": {
2222
"lint": "eslint --cache *.ts",

dex/types/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pkmn/dex-types",
3-
"version": "0.10.0",
3+
"version": "0.10.1",
44
"types": "index.d.ts",
55
"description": "Common Pokémon Showdown Dex types shared by @pkmn/dex and @pkmn/sim",
66
"repository": "github:pkmn/ps",

mods/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pkmn/mods",
3-
"version": "0.9.39",
3+
"version": "0.10.1",
44
"description": "Support for non-standard mods to @pkmn/sim and @pkmn/dex",
55
"repository": "github:pkmn/ps",
66
"author": "Guangcong Luo <guangcongluo@gmail.com> (http://guangcongluo.com)",
@@ -114,11 +114,11 @@
114114
"build"
115115
],
116116
"dependencies": {
117-
"@pkmn/dex-types": "^0.10.0"
117+
"@pkmn/dex-types": "^0.10.1"
118118
},
119119
"devDependencies": {
120-
"@pkmn/dex": "^0.9.39",
121-
"@pkmn/sim": "^0.10.0"
120+
"@pkmn/dex": "^0.10.1",
121+
"@pkmn/sim": "^0.10.1"
122122
},
123123
"scripts": {
124124
"lint": "eslint --cache src",

protocol/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@
4040
"@pkmn/types": "^4.0.0"
4141
},
4242
"devDependencies": {
43-
"@pkmn/dex": "^0.10.0",
44-
"@pkmn/data": "^0.10.0"
43+
"@pkmn/dex": "^0.10.1",
44+
"@pkmn/data": "^0.10.1"
4545
},
4646
"scripts": {
4747
"lint": "eslint --cache src",

randoms/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pkmn/randoms",
3-
"version": "0.10.0",
3+
"version": "0.10.1",
44
"description": "Random team generation logic for Pokémon Showdown's Random Battle formats",
55
"repository": "github:pkmn/ps",
66
"license": "MIT",
@@ -15,7 +15,7 @@
1515
"build"
1616
],
1717
"dependencies": {
18-
"@pkmn/sim": "^0.10.0"
18+
"@pkmn/sim": "^0.10.1"
1919
},
2020
"scripts": {
2121
"lint": "eslint --cache src",

sim/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pkmn/sim",
3-
"version": "0.10.0",
3+
"version": "0.10.1",
44
"description": "An automatically generated extraction of just the simulator portion of Pokémon Showdown",
55
"repository": "github:pkmn/ps",
66
"homepage": "https://psim.us",

0 commit comments

Comments
 (0)