Skip to content

Commit 1d35847

Browse files
authored
Merge pull request #21 from gopher-utils/chore/rename-repo
refactor: update repo url and add codeowners
2 parents ee55347 + b591f7a commit 1d35847

File tree

10 files changed

+21
-27
lines changed

10 files changed

+21
-27
lines changed
File renamed without changes.

CODEOWNERS

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# These owners will be the default owners for everything in
2+
# the repo. Unless a later match takes precedence,
3+
* @gopinathr143 @adarsh-a-tw @aswath-s-tw

CONTRIBUTING.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ All types of contributions are encouraged and valued. See the [Table of Contents
1818

1919
## I Have a Question
2020

21-
> If you want to ask a question, we assume that you have read the available [Documentation](https://pkg.go.dev/github.com/gopinathr143/go-collections).
21+
> If you want to ask a question, we assume that you have read the available [Documentation](https://pkg.go.dev/github.com/gopher-utils/go-collections).
2222
2323
Before you ask a question, it is best to search for existing [Issues](/issues) that might help you. In case you have found a suitable issue and still need clarification, you can write your question in this issue. It is also advisable to search the internet for answers first.
2424

@@ -71,7 +71,7 @@ This section guides you through submitting an enhancement suggestion, **includin
7171
#### Before Submitting an Enhancement
7272

7373
- Make sure that you are using the latest version.
74-
- Read the [documentation](https://pkg.go.dev/github.com/gopinathr143/go-collections) carefully and find out if the functionality is already covered.
74+
- Read the [documentation](https://pkg.go.dev/github.com/gopher-utils/go-collections) carefully and find out if the functionality is already covered.
7575
- Perform a [search](/issues) to see if the enhancement has already been suggested. If it has, add a comment to the existing issue instead of opening a new one.
7676
- Find out whether your idea fits with the scope and aims of the project. It's up to you to make a strong case to convince the project's developers of the merits of this feature. Keep in mind that we want features that will be useful to the majority of our users and not just a small subset. If you're just targeting a minority of users, consider writing an add-on/plugin library.
7777

@@ -112,7 +112,7 @@ golangci-lint run
112112

113113
### Improving The Documentation
114114

115-
We use godoc to generate and host our documentation(https://pkg.go.dev/github.com/gopinathr143/go-collections). If you find issues with existing documentation or have suggestions for enhancements, please create an issue/PR with necessary changes.
115+
We use godoc to generate and host our documentation(https://pkg.go.dev/github.com/gopher-utils/go-collections). If you find issues with existing documentation or have suggestions for enhancements, please create an issue/PR with necessary changes.
116116

117117
## Styleguides
118118

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2023 Gopinath Rakkiyannan
3+
Copyright (c) 2023 gopher-utils
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 6 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,10 @@
11
# go-collections
22
<p>
3-
<img src="https://github.com/gopinathr143/go-collections/actions/workflows/pr-actions.yml/badge.svg" alt="Build">
4-
<a href="https://github.com/gopinathr143/go-collections/blob/main/LICENSE"><img src="https://img.shields.io/badge/license-MIT-purple" alt="License"></a>
3+
<img src="https://github.com/gopher-utils/go-collections/actions/workflows/build.yml/badge.svg" alt="Build">
4+
<a href="https://github.com/gopher-utils/go-collections/blob/main/LICENSE"><img src="https://img.shields.io/badge/license-MIT-purple" alt="License"></a>
55
</p>
66

7-
Brings **L**anguage **In**tegrated **Q**uery features through basic collections into your go project.
8-
9-
**Features**:
10-
11-
<p>
12-
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; List datastructure of both primitive types and structs<br />
13-
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Set datastructure of both primitive types and structs<br />
14-
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Map datastructure of both primitive types and structs<br />
15-
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Sorting and searching of collections<br />
16-
</p>
7+
Basic collections with Go using generics.
178

189
## Table of Contents
1910

@@ -25,7 +16,7 @@ Brings **L**anguage **In**tegrated **Q**uery features through basic collections
2516
## Installation
2617

2718
```shell
28-
go get github.com/gopinathr143/go-collections
19+
go get github.com/gopher-utils/go-collections
2920
```
3021

3122
## Usage
@@ -38,7 +29,7 @@ package main
3829
import (
3930
"fmt"
4031

41-
"github.com/gopinathr143/go-collections/collections/list"
32+
"github.com/gopher-utils/go-collections/collections/list"
4233
)
4334

4435
func main() {
@@ -63,7 +54,7 @@ func main() {
6354

6455
```
6556

66-
Please check the [documentation](https://pkg.go.dev/github.com/gopinathr143/go-collections) for more comprehensive usage.
57+
Please check the [documentation](https://pkg.go.dev/github.com/gopher-utils/go-collections) for more comprehensive usage.
6758

6859
## Contributing
6960

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/gopinathr143/go-collections
1+
module github.com/gopher-utils/go-collections
22

33
go 1.20
44

list/list.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"fmt"
66
"strings"
77

8-
"github.com/gopinathr143/go-collections"
8+
"github.com/gopher-utils/go-collections"
99
)
1010

1111
var (

list/list_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ package list_test
33
import (
44
"testing"
55

6-
"github.com/gopinathr143/go-collections"
7-
"github.com/gopinathr143/go-collections/list"
6+
"github.com/gopher-utils/go-collections"
7+
"github.com/gopher-utils/go-collections/list"
88

99
"github.com/stretchr/testify/assert"
1010
)

math/basic_functions.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
package math
22

33
import (
4-
"github.com/gopinathr143/go-collections"
5-
"github.com/gopinathr143/go-collections/list"
4+
"github.com/gopher-utils/go-collections"
5+
"github.com/gopher-utils/go-collections/list"
66
)
77

88
// Returns the average of all elements present in the given collection.

math/basic_functions_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ package math_test
33
import (
44
"testing"
55

6-
"github.com/gopinathr143/go-collections/list"
7-
"github.com/gopinathr143/go-collections/math"
6+
"github.com/gopher-utils/go-collections/list"
7+
"github.com/gopher-utils/go-collections/math"
88

99
"github.com/stretchr/testify/assert"
1010
)

0 commit comments

Comments
 (0)