Skip to content

Commit

Permalink
Revert "Add Cahngelog"
Browse files Browse the repository at this point in the history
This reverts commit 0495991.
  • Loading branch information
outdead committed May 28, 2020
1 parent 0495991 commit 2d43f91
Show file tree
Hide file tree
Showing 6 changed files with 44 additions and 40 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,5 @@
# internal tests

# vendors
Gopkg.lock
vendor/
31 changes: 0 additions & 31 deletions CHANGELOG.md

This file was deleted.

38 changes: 38 additions & 0 deletions Gopkg.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# Gopkg.toml example
#
# Refer to https://golang.github.io/dep/docs/Gopkg.toml.html
# for detailed Gopkg.toml documentation.
#
# required = ["github.com/user/thing/cmd/thing"]
# ignored = ["github.com/user/project/pkgX", "bitbucket.org/user/project/pkgA/pkgY"]
#
# [[constraint]]
# name = "github.com/user/project"
# version = "1.0.0"
#
# [[constraint]]
# name = "github.com/user/project2"
# branch = "dev"
# source = "github.com/myfork/project2"
#
# [[override]]
# name = "github.com/x/y"
# version = "2.4.0"
#
# [prune]
# non-go = false
# go-tests = true
# unused-packages = true


[[constraint]]
name = "github.com/bwmarrin/discordgo"
version = "0.19.0"

[[constraint]]
name = "github.com/sirupsen/logrus"
version = "1.4.2"

[prune]
go-tests = true
unused-packages = true
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2020 Pavel Korotkiy
Copyright (c) 2019 Pavel Korotkiy

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
6 changes: 1 addition & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,7 @@
go get github.com/outdead/discordbotrus
```

See [Changelog](CHANGELOG.md) for release details.

## Requirements

Go 1.13 or higher
Or use dependency manager such as dep or vgo.

## Usage

Expand Down
6 changes: 3 additions & 3 deletions embed_formatter.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ const (
embedMaxFieldNameLen = 256
embedMaxFieldValueLen = 1024
embedMaxDescriptionLen = 2048
)

// EmbedFormatterCode formatter code to identify from config.
const EmbedFormatterCode = "embed"
// EmbedFormatterCode formatter code to identify from config.
EmbedFormatterCode = "embed"
)

// DefaultEmbedFormatter used as default EmbedFormatter.
var DefaultEmbedFormatter = &EmbedFormatter{
Expand Down

0 comments on commit 2d43f91

Please sign in to comment.