Skip to content
This repository was archived by the owner on Feb 10, 2020. It is now read-only.

Commit be3ec62

Browse files
authored
Apply review comments
1 parent f61854f commit be3ec62

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tutorials/packaging/create-your-first-snap.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ confinement: devmode # use 'strict' once you have the right plugs and slots
152152
This part of `snapcraft.yaml` is mandatory and describes the very basics of the snap metadata. Let’s go through this line by line:
153153
154154
- **name** describes the name of the snap.
155-
- **version** is the current version of the snap. This is just a human readable string. The ascii order doesn’t matter: all snap uploads will get an incremental snap **revision**, which is independant from the version. It’s separated so that you can upload multiple times the same snap for the same architecture with the exact same version. See it as a string that indicates to your user the current version, like “stable”, “2.0” and such.
155+
- **version** is the current version of the snap. This is just a human readable string. The ascii order doesn’t matter: all snap uploads will get an incremental snap **revision**, which is independent from the version. It’s separated so that you can upload multiple times the same snap for the same architecture with the exact same version. See it as a string that indicates to your user the current version, like “stable”, “2.0” and such.
156156
- **summary** is a short, one-line summary or tag-line for your snap.
157157
- **description** should provide the user with enough information to judge if the snap is going to be useful to them. This description can span over multiple lines if prefixed with **|**.
158158
- **grade** can be used by the publisher to indicate the quality confidence in the build. The store will prevent publishing "devel" grade builds to stable channels.
@@ -685,7 +685,7 @@ sudo snap install hello-didrocks --channel=candidate
685685
```
686686
687687
negative
688-
: As you uploaded an amd64 binary, only people on amd64 machine will get access to this snap. You can either only focus on one architecture to support, build yourself for all supported architectures your snap, or use [build.snapcraft.io](https://build.snapcraft.io) to push your `snapcraft.yaml`, and get resulting snaps built on all architectures for you!
688+
: As you uploaded an amd64 binary, only people on 64-bit machines will get access to this snap. You can either only focus on one architecture to support, manually build a binary for each architecture you wish to support, or use [build.snapcraft.io](https://build.snapcraft.io) to push your `snapcraft.yaml`, and get resulting snaps built on all architectures for you!
689689
690690
From here, if you are happy with the testing of your snap, you can use the `snapcraft release` command to have fine-grained control over what you are releasing and where:
691691

0 commit comments

Comments
 (0)