<feed xmlns='http://www.w3.org/2005/Atom'>
<title>mirrors/arti.git, branch arti-v1.3.1</title>
<subtitle>mirror of https://gitlab.torproject.org/tpo/core/arti
</subtitle>
<id>http://git.dilluti0n.com/mirrors/arti.git/atom?h=arti-v1.3.1</id>
<link rel='self' href='http://git.dilluti0n.com/mirrors/arti.git/atom?h=arti-v1.3.1'/>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/'/>
<updated>2024-12-02T17:45:00Z</updated>
<entry>
<title>Merge branch 'arti-1.3.1-bumps' into 'main'</title>
<updated>2024-12-02T17:45:00Z</updated>
<author>
<name>gabi-250</name>
<email>gabi@torproject.org</email>
</author>
<published>2024-12-02T17:45:00Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=2a54e07d426706ec3df286ce74565c71c3d36bce'/>
<id>urn:sha1:2a54e07d426706ec3df286ce74565c71c3d36bce</id>
<content type='text'>
Version bumps for 1.3.1

See merge request tpo/core/arti!2650</content>
</entry>
<entry>
<title>equix, hashx: Add Cargo.lock changes.</title>
<updated>2024-12-02T15:53:02Z</updated>
<author>
<name>Gabriela Moldovan</name>
<email>gabi@torproject.org</email>
</author>
<published>2024-12-02T15:52:29Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=4a154e1d02819bb6f3a82d34c1bebb4fa8eee683'/>
<id>urn:sha1:4a154e1d02819bb6f3a82d34c1bebb4fa8eee683</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Bump arti crate to 1.3.1</title>
<updated>2024-12-02T15:41:21Z</updated>
<author>
<name>Gabriela Moldovan</name>
<email>gabi@torproject.org</email>
</author>
<published>2024-12-02T15:40:48Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=642b3c4e2de4f8baa453ad4078884366eed545b5'/>
<id>urn:sha1:642b3c4e2de4f8baa453ad4078884366eed545b5</id>
<content type='text'>
Done using:

```
cargo set-version --bump patch -p arti
```
</content>
</entry>
<entry>
<title>Bump all the unstable tor- and arti- crates to 0.25.0.</title>
<updated>2024-12-02T15:41:21Z</updated>
<author>
<name>Gabriela Moldovan</name>
<email>gabi@torproject.org</email>
</author>
<published>2024-12-02T15:39:29Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=e29e7a9aab4312af6a35818cb01676376d888e49'/>
<id>urn:sha1:e29e7a9aab4312af6a35818cb01676376d888e49</id>
<content type='text'>
Done using:

```
for crate in $(./maint/list_crates  | rg '^(tor|arti-)'); do
    cargo set-version -p $crate 0.25.0
done
```
</content>
</entry>
<entry>
<title>Bump the versions of the non-{arti-,tor-} crates.</title>
<updated>2024-12-02T15:41:21Z</updated>
<author>
<name>Gabriela Moldovan</name>
<email>gabi@torproject.org</email>
</author>
<published>2024-12-02T15:32:52Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=158ff2d2c0ef59ce6cdf5e8d6fe499b50e762002'/>
<id>urn:sha1:158ff2d2c0ef59ce6cdf5e8d6fe499b50e762002</id>
<content type='text'>
The non-{arti-,tor-} crates are:
```
./maint/list_crates  | rg -v '^(tor|arti)'
oneshot-fused-workaround
slotmap-careful
test-temp-dir
fslock-guard
hashx
equix
caret
fs-mistrust
safelog
retry-error
```

We split them in the following categories:
  * crates with no changes (no version bumps):
    ```
    maint/changed_crates -v "arti-v$LAST_VERSION" 2&gt;&amp;1 &gt;/dev/null | grep -i "no change" | grep -v '\(tor\|arti\)-'

         oneshot-fused-workaround: No change.
         test-temp-dir: No change.
         caret: No change.
    ```

  * crates that only have non-functional changes (bump the patch version):
     - slotmap-careful
     - fslock-guard
     - hashx
     - equix
     - fs-mistrust
     - safelog
     - retry-error

  * crates where APIs were broken (bump minor):
     None

The bumps from this commit were created using this script:

```
PATCH="
slotmap-careful
fslock-guard
hashx
equix
fs-mistrust
safelog
retry-error
"

for crate in $PATCH; do
    cargo set-version --bump patch -p $crate;
done
```
</content>
</entry>
<entry>
<title>Run cargo update for {hashx,equix}/bench.</title>
<updated>2024-12-02T15:41:21Z</updated>
<author>
<name>Gabriela Moldovan</name>
<email>gabi@torproject.org</email>
</author>
<published>2024-12-02T15:29:25Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=42a0f0b4f30176b79566eb7375d3a06b6a59bb62'/>
<id>urn:sha1:42a0f0b4f30176b79566eb7375d3a06b6a59bb62</id>
<content type='text'>
Done using

```
  (cd crates/hashx/bench &amp;&amp; cargo update)
  (cd crates/equix/bench &amp;&amp; cargo update)
```
</content>
</entry>
<entry>
<title>Merge branch 'changelog-1.3.1' into 'main'</title>
<updated>2024-12-02T15:37:19Z</updated>
<author>
<name>gabi-250</name>
<email>gabi@torproject.org</email>
</author>
<published>2024-12-02T15:37:19Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=b7ec87d14f90604f1da7fe34225cab89454ea091'/>
<id>urn:sha1:b7ec87d14f90604f1da7fe34225cab89454ea091</id>
<content type='text'>
Changelog for 1.3.1.

See merge request tpo/core/arti!2649</content>
</entry>
<entry>
<title>CHANGELOG: Add missing link to issue.</title>
<updated>2024-12-02T14:59:21Z</updated>
<author>
<name>Gabriela Moldovan</name>
<email>gabi@torproject.org</email>
</author>
<published>2024-12-02T14:59:21Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=63fa49954030f8a615f89f4285a5ea4f3bf77dd4'/>
<id>urn:sha1:63fa49954030f8a615f89f4285a5ea4f3bf77dd4</id>
<content type='text'>
</content>
</entry>
<entry>
<title>CHANGELOG: Rephrase changelog entry for clarity.</title>
<updated>2024-12-02T14:19:29Z</updated>
<author>
<name>Gabriela Moldovan</name>
<email>gabi@torproject.org</email>
</author>
<published>2024-12-02T14:19:29Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=48a0a978b6c562c142491e3ae5e63cdf319a04d1'/>
<id>urn:sha1:48a0a978b6c562c142491e3ae5e63cdf319a04d1</id>
<content type='text'>
</content>
</entry>
<entry>
<title>CHANGELOG: Add missing links.</title>
<updated>2024-12-02T14:17:02Z</updated>
<author>
<name>Gabriela Moldovan</name>
<email>gabi@torproject.org</email>
</author>
<published>2024-12-02T14:17:02Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=a658c6ecc0cf0787fb30d55796c70919d4b98f80'/>
<id>urn:sha1:a658c6ecc0cf0787fb30d55796c70919d4b98f80</id>
<content type='text'>
</content>
</entry>
</feed>
