yass-css 0.2.0-x86_64-linux → 0.4.0-x86_64-linux
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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +8 -0
- data/README.md +2 -0
- data/RELEASING.md +15 -0
- data/Rakefile +0 -2
- data/lib/yass/3.2/yass.so +0 -0
- data/lib/yass/3.3/yass.so +0 -0
- data/lib/yass/3.4/yass.so +0 -0
- data/lib/yass/4.0/yass.so +0 -0
- data/lib/yass/rules.rb +1 -1
- data/lib/yass/version.rb +1 -1
- data/lib/yass/visitor.rb +1 -0
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 276065df52794e75496b4ba73698267965a30e8ae5c896ccf96af2f08289d201
|
|
4
|
+
data.tar.gz: 1ba83c0826318ada03fd32d95104aac9e39262c1ead6d70365e8b5412fed2b08
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ecacb9dcba40d3cdf0dbdc4def6444d22a108e43e86dc5ae82e5a952734139464d4e017d15432abf455a80d51d6177acc0c3f54871ac17b96abc33a11d8b4104
|
|
7
|
+
data.tar.gz: 86a064259ec2f253e64b3ab55565d793d399af04aa6a24edcab5058e3a06048d284012a853253cc73de44265e057753e8d97ea8e838553dadd004eb160aac775
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
data/RELEASING.md
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# Releasing Yass
|
|
2
|
+
|
|
3
|
+
Follow these steps to release a new version of Yass:
|
|
4
|
+
|
|
5
|
+
1. Bump the version in lib/yass/version.rb.
|
|
6
|
+
2. Bump the version in ext/yass/Cargo.toml (should be the same version from step 1).
|
|
7
|
+
3. Add a heading in CHANGELOG.md with the version number and today's date.
|
|
8
|
+
4. Run `bundle install` and `bundle exec rake compile` to refresh the Bundler and Cargo lockfiles.
|
|
9
|
+
5. Commit the results of these changes and push them to GitHub.
|
|
10
|
+
6. Wait for CI to run. This might seem unimportant but weird things can go wrong with lockfiles, etc, so it's best to wait for a clean bill of health before continuing.
|
|
11
|
+
7. Create a release in the GitHub UI [here](https://github.com/camertron/yass/releases/new).
|
|
12
|
+
1. Create a new tag for the release of the form vX.X.X, using the same version number you've been using this whole time.
|
|
13
|
+
2. Name the release the same thing, i.e. vX.X.X.
|
|
14
|
+
3. Copy the relevant section from CHANGELOG.md (including the header) and paste it into the release notes.
|
|
15
|
+
8. This will kick off the GitHub action in .github/workflows/release.yml, build the native extension for all the supported ruby versions and platforms, and publish the various .gem files to rubygems.org.
|
data/Rakefile
CHANGED
data/lib/yass/3.2/yass.so
CHANGED
|
Binary file
|
data/lib/yass/3.3/yass.so
CHANGED
|
Binary file
|
data/lib/yass/3.4/yass.so
CHANGED
|
Binary file
|
data/lib/yass/4.0/yass.so
CHANGED
|
Binary file
|
data/lib/yass/rules.rb
CHANGED
data/lib/yass/version.rb
CHANGED
data/lib/yass/visitor.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: yass-css
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.4.0
|
|
5
5
|
platform: x86_64-linux
|
|
6
6
|
authors:
|
|
7
7
|
- Cameron Dutro
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-04-
|
|
11
|
+
date: 2026-04-21 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: The Stylo CSS parser wrapped in a Ruby embrace.
|
|
14
14
|
email:
|
|
@@ -21,6 +21,7 @@ files:
|
|
|
21
21
|
- CODE_OF_CONDUCT.md
|
|
22
22
|
- LICENSE.txt
|
|
23
23
|
- README.md
|
|
24
|
+
- RELEASING.md
|
|
24
25
|
- Rakefile
|
|
25
26
|
- codegen/ruby_module_tree.rb
|
|
26
27
|
- codegen/rust_file_set.rb
|