Skip to content

Commit 54c0b53

Browse files
committed
releasing v.1.0.0
Signed-off-by: adarsh-jaiss <[email protected]>
1 parent 5f008a3 commit 54c0b53

File tree

4 files changed

+69
-0
lines changed

4 files changed

+69
-0
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
secret.txt
2+
dist/

.goreleaser.yaml

+63
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
# This is an example .goreleaser.yml file with some sensible defaults.
2+
# Make sure to check the documentation at https://goreleaser.com
3+
4+
# The lines below are called `modelines`. See `:help modeline`
5+
# Feel free to remove those if you don't want/need to use them.
6+
# yaml-language-server: $schema=https://goreleaser.com/static/schema.json
7+
# vim: set ts=2 sw=2 tw=0 fo=cnqoj
8+
9+
version: 2
10+
11+
before:
12+
hooks:
13+
# You may remove this if you don't use go modules.
14+
- go mod tidy
15+
- go mod download
16+
# you may remove this if you don't need go generate
17+
# - go generate ./...
18+
19+
builds:
20+
- env:
21+
- CGO_ENABLED=0
22+
main: ./cmd/mailify/main.go
23+
binary: mailify
24+
goos:
25+
- linux
26+
- windows
27+
- darwin
28+
goarch:
29+
- amd64
30+
- arm64
31+
ignore:
32+
- goos: windows
33+
goarch: arm64
34+
ldflags:
35+
- -s -w -X github.com/flyteorg/flytestdlib/version.Version={{.Version}} -X github.com/flyteorg/flytestdlib/version.Build={{.ShortCommit}} -X github.com/flyteorg/flytestdlib/version.BuildTime={{.Date}}
36+
37+
archives:
38+
- format: tar.gz
39+
# this name template makes the OS and Arch compatible with the results of `uname`.
40+
name_template: >-
41+
{{ .ProjectName }}_
42+
{{- title .Os }}_
43+
{{- if eq .Arch "amd64" }}x86_64
44+
{{- else if eq .Arch "386" }}i386
45+
{{- else }}{{ .Arch }}{{ end }}
46+
{{- if .Arm }}v{{ .Arm }}{{ end }}
47+
# use zip for windows archives
48+
format_overrides:
49+
- goos: windows
50+
format: zip
51+
52+
changelog:
53+
sort: asc
54+
filters:
55+
exclude:
56+
- '^docs:'
57+
- '^test:'
58+
- '^ci:'
59+
- Merge pull request
60+
- Merge branch
61+
62+
checksum:
63+
name_template: 'checksums.txt'
File renamed without changes.

main.go

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
// Package mailify provides functionalities for handling and processing emails.
2+
// This package includes features for sending, receiving, and managing email
3+
// communications in a secure and efficient manner.
4+
package mailify

0 commit comments

Comments
 (0)