Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Go version and use Linux 'bookworm' distribution #102

Merged
merged 3 commits into from
Feb 14, 2024
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
2 changes: 1 addition & 1 deletion .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
@@ -1 +1 @@
FROM mcr.microsoft.com/devcontainers/go:1.21-bullseye
FROM mcr.microsoft.com/devcontainers/go:1.22-bookworm
4 changes: 2 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module github.com/calcpadstudio/gazelle
module github.com/GazelleKit/gazelle

go 1.21.1
go 1.22.0
2 changes: 1 addition & 1 deletion pkg/bluebook/universalsection.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package bluebook

import (
units "github.com/calcpadstudio/gazelle/pkg/units"
units "github.com/GazelleKit/gazelle/pkg/units"
)

type DimensionsAndProperties struct {
Expand Down
2 changes: 1 addition & 1 deletion pkg/steel/sections.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package steel

import (
bluebook "github.com/calcpadstudio/gazelle/pkg/bluebook"
bluebook "github.com/GazelleKit/gazelle/pkg/bluebook"
)

type UniversalBeam struct {
Expand Down
Loading