-
-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added a blog post about ronin-exploits 1.0.6 and 1.1.0.rc2.
- Loading branch information
1 parent
20a5ba8
commit 7efe8f6
Showing
1 changed file
with
54 additions
and
0 deletions.
There are no files selected for viewing
54 changes: 54 additions & 0 deletions
54
blog/_posts/2024-06-28-ronin-exploits-1.0.6-and-1-1-0-rc2-released.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
--- | ||
layout: post | ||
title: ronin-exploits 1.0.6 and 1.1.0.rc2 released | ||
author: postmodern | ||
tags: | ||
- ronin-exploits | ||
- beta | ||
--- | ||
|
||
[ronin-exploits][ronin-exploits] [1.0.6][ronin-exploits-1.0.6] and | ||
[1.1.0.rc2][ronin-exploits-1.1.0.rc2] have been released fixing a bugs in the | ||
`ronin-exploits run` command. | ||
|
||
## How To Update | ||
|
||
### Gems | ||
|
||
To only update [ronin-exploits] to [1.0.6][ronin-exploits-1.0.6], simply run: | ||
|
||
```shell | ||
gem update ronin-exploits | ||
``` | ||
|
||
If you are participating in the [Ronin 2.1.0 Open Beta], you can update to | ||
[ronin-exploits][ronin-exploits] [1.1.0.rc2][ronin-exploits-1.1.0.rc2] by | ||
running: | ||
|
||
```shell | ||
gem update ronin-exploits --pre | ||
``` | ||
|
||
### Docker | ||
|
||
{% include docker_update.md %} | ||
|
||
If you are participating in the [Ronin 2.1.0 Open Beta], you can pull down the | ||
updated `roninrb/ronin:2.1.0.rc1.1` docker image: | ||
|
||
```shell | ||
$ docker pull roninrb/ronin:2.1.0.rc1.1 | ||
$ docker run --rm -it roninrb/ronin:2.1.0.rc1.1 | ||
root@3e1a4401b92d:/# ronin-exploits -V | ||
ronin-exploits 1.1.0.rc1 | ||
``` | ||
|
||
### Snap | ||
|
||
{% include snap_update.md %} | ||
|
||
[Ronin 2.1.0 Open Beta]: /blog/2024/06/24/announcing-ronin-2-1-0-open-beta.html | ||
|
||
[ronin-exploits]: https://github.com/ronin-rb/ronin-exploits/tree/1.1.0#readme | ||
[ronin-exploits-1.0.6]: https://github.com/ronin-rb/ronin-exploits/releases/tag/v1.0.6 | ||
[ronin-exploits-1.1.0.rc2]: https://github.com/ronin-rb/ronin-exploits/compare/v1.1.0.rc1...v1.1.0.rc2 |