Skip to content

go.mod: Rename go module to github.com/dolthub/jsonpath. #2

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

Merged
merged 1 commit into from
Apr 19, 2023
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 LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2015 oliver
Copyright (c) 2021, 2015; DoltHub Authors, oliver

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
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/oliveagle/jsonpath
module github.com/dolthub/jsonpath

go 1.15

Expand Down
6 changes: 6 additions & 0 deletions jsonpath.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
// Copyright 2015, 2021; oliver, DoltHub Authors
//
// Use of this source code is governed by an MIT-style
// license that can be found in the LICENSE file or at
// https://opensource.org/licenses/MIT.

package jsonpath

import (
Expand Down
6 changes: 6 additions & 0 deletions jsonpath_test.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
// Copyright 2015, 2021; oliver, DoltHub Authors
//
// Use of this source code is governed by an MIT-style
// license that can be found in the LICENSE file or at
// https://opensource.org/licenses/MIT.

package jsonpath

import (
Expand Down
4 changes: 2 additions & 2 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ but also with some minor differences.

this library is till bleeding edge, so use it at your own risk. :D

**Golang Version Required**: 1.5+
**Golang Version Required**: 1.15+

Get Started
------------
Expand Down Expand Up @@ -111,4 +111,4 @@ example json path syntax.
| $.store.book[:].price | [8.9.5, 12.99, 8.9.9, 22.99] |
| $.store.book[?(@.author =~ /(?i).*REES/)].author | "Nigel Rees" |

> Note: golang support regular expression flags in form of `(?imsU)pattern`
> Note: golang support regular expression flags in form of `(?imsU)pattern`