Skip to content

Commit 1c7ded2

Browse files
committed
Version 3.1.0
1 parent 5fdb66b commit 1c7ded2

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

.github/workflows/native-image-on-demand.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
--onefile src/blockdiag \
6060
--output-filename=blockdiag-bundle-${PLATFORM}.bin
6161
env:
62-
PLATFORM: ${{ matrix.os }}
62+
PLATFORM: ${{ matrix.platform }}
6363
- name: Smoke test
6464
run: |
6565
echo 'blockdiag { A -> B; }' | ./blockdiag-bundle-${PLATFORM}.bin -Tsvg -
@@ -71,13 +71,15 @@ jobs:
7171
echo 'nwdiag { network dmz { web01; web02; }; network internal { web01; web02; db01; } }' | ./blockdiag-bundle-${PLATFORM}.bin -Tsvg --module=nwdiag -
7272
echo 'rackdiag { 8U; 1: UPS [2U]; 3: DB Server; 4: Web Server; 8: L3 Switch }' | ./blockdiag-bundle-${PLATFORM}.bin -Tsvg --module=rackdiag -
7373
env:
74-
PLATFORM: ${{ matrix.os }}
74+
PLATFORM: ${{ matrix.platform }}
7575
- name: Cache native image
7676
uses: actions/cache/save@v3
7777
with:
7878
path: "blockdiag-bundle-${PLATFORM}.bin"
7979
key: "native-image-${PLATFORM}-${{ github.run_id }}"
8080
enableCrossOsArchive: true
81+
env:
82+
PLATFORM: ${{ matrix.platform }}
8183
upload:
8284
needs: [ native_images ]
8385
runs-on: ubuntu-latest

CHANGES.rst

+5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
Changelog
22
=========
33

4+
3.1.0 (2023-08-14)
5+
------------------
6+
* Allow to write result to stdout
7+
* Produce a single binary for AMD64 and ARM64 including blockdiag, seqdiag, actdiag, nwdiag, packetdiag and rackdiag
8+
49
3.0.0 (2021-12-06)
510
------------------
611
* Drop python3.6 support

src/blockdiag/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@
1313
# See the License for the specific language governing permissions and
1414
# limitations under the License.
1515

16-
__version__ = '3.0.0'
16+
__version__ = '3.1.0'

0 commit comments

Comments
 (0)