ic-mops 0.14.0 → 0.14.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -50,6 +50,11 @@ You can also add packages from GitHub like this
50
50
  mops add https://github.com/dfinity/motoko-base
51
51
  ```
52
52
 
53
+ For GitHub-packages you can specify branch, tag, or commit hash by adding `#<branch/tag/hash>`
54
+ ```
55
+ mops add https://github.com/dfinity/motoko-base#moc-0.9.1
56
+ ```
57
+
53
58
  You can also add local packages like this (put source files inside `src` directory)
54
59
  ```
55
60
  mops add ./shared
package/mops.js CHANGED
@@ -41,14 +41,14 @@ export function getNetwork() {
41
41
  else if (network === 'staging') {
42
42
  return {
43
43
  network,
44
- host: 'https://ic0.app',
44
+ host: 'https://icp-api.io',
45
45
  canisterId: '2d2zu-vaaaa-aaaak-qb6pq-cai',
46
46
  };
47
47
  }
48
48
  else if (network === 'ic') {
49
49
  return {
50
50
  network,
51
- host: 'https://ic0.app',
51
+ host: 'https://icp-api.io',
52
52
  canisterId: 'oknww-riaaa-aaaam-qaf6a-cai',
53
53
  };
54
54
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ic-mops",
3
- "version": "0.14.0",
3
+ "version": "0.14.1",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "mops": "cli.js"
@@ -18,7 +18,7 @@ jobs:
18
18
  node-version: 18
19
19
  - uses: aviate-labs/setup-dfx@v0.2.3
20
20
  with:
21
- dfx-version: 0.14.0
21
+ dfx-version: 0.14.1
22
22
 
23
23
  - name: install dfx
24
24
  run: dfx cache install