Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 35 additions & 0 deletions .github/workflows/create-bumb-version-pr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Create bump version PR

on:
workflow_dispatch:
inputs:
version:
description: Version to change to (semver).
required: true
type: string

jobs:
bump-version-pr:
name: Bump version PR
runs-on: ubuntu-latest
defaults:
run:
shell: bash
steps:

- uses: actions/checkout@v4
with:
fetch-depth: 0
ref: main

- name: Use Node.js from nvmrc
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'

- name: Create Pull Request
uses: peter-evans/create-pull-request@v7
with:
commit-message: Bump version to ${{ inputs.version }}
branch: bump-version-to-${{ inputs.version }}
title: Bump version to ${{ inputs.version }}
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vt-pbf",
"version": "4.0.0",
"name": "@maplibre/vt-pbf",
"version": "4.0.1",
"description": "Serialize mapbox vector tiles to binary protobufs in javascript.",
"main": "dist/index.es.js",
"types": "dist/index.d.ts",
Expand All @@ -17,7 +17,7 @@
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/mapbox/vt-pbf.git"
"url": "git+https://github.com/maplibre/vt-pbf.git"
},
"dependencies": {
"@mapbox/point-geometry": "^1.1.0",
Expand Down